using System; using System.Linq; using Microsoft.EntityFrameworkCore; using Microsoft.EntityFrameworkCore.Metadata; using Microsoft.EntityFrameworkCore.Metadata.Internal; public class LocationContext : DbContext { public DbSet CustomerLocations { get; set; } public DbSet Customers { get; set; } }