我需要将ApplicationDbContext与DemoPoolEntities上下文合并。我需要做些什么来正确合并两者?我需要这样做的原因是,我可以从ApplicationUser
类访问Customer
类,这是DemoPoolEntities
上下文的一部分。我不知道从哪里开始合并这两个,所以他们都在一个DbContext
。
ApplicationDbContext
using System.Data.Entity;
using System.Security.Claims;
using System.Threading.Tasks;
using Microsoft.AspNet.Identity;
using Microsoft.AspNet.Identity.EntityFramework;
namespace DemoPool.Models
{
// You can add profile data for the user by adding more properties to your ApplicationUser class, please visit https://go.microsoft.com/fwlink/?LinkID=317594 to learn more.
public class ApplicationUser : IdentityUser
{
public async Task<ClaimsIdentity> GenerateUserIdentityAsync(UserManager<ApplicationUser> manager)
{
// Note the authenticationType must match the one defined in CookieAuthenticationOptions.AuthenticationType
var userIdentity = await manager.CreateIdentityAsync(this, DefaultAuthenticationTypes.ApplicationCookie);
// Add custom user claims here
return userIdentity;
}
}
public class ApplicationDbContext : IdentityDbContext<ApplicationUser>
{
public ApplicationDbContext()
: base("DemoPoolEntities", throwIfV1Schema: false)
{
}
public static ApplicationDbContext Create()
{
return new ApplicationDbContext();
}
}
}
DemoPoolEntities
namespace DemoPool.Models
{
using System;
using System.Data.Entity;
using System.ComponentModel.DataAnnotations.Schema;
using System.Linq;
using Microsoft.AspNet.Identity.EntityFramework;
public partial class DemoPoolEntities : DbContext
{
public DemoPoolEntities()
: base("name=DemoPoolEntities")
{
}
public virtual DbSet<Condition> Conditions { get; set; }
public virtual DbSet<Customer> Customers { get; set; }
public virtual DbSet<Kit> Kits { get; set; }
public virtual DbSet<Loan> Loans { get; set; }
public virtual DbSet<Product> Products { get; set; }
public virtual DbSet<Type> Types { get; set; }
protected override void OnModelCreating(DbModelBuilder modelBuilder)
{
modelBuilder.Entity<Condition>()
.Property(e => e.Condition1)
.IsUnicode(false);
modelBuilder.Entity<Customer>()
.Property(e => e.CompanyName)
.IsUnicode(false);
modelBuilder.Entity<Customer>()
.Property(e => e.FirstName)
.IsUnicode(false);
modelBuilder.Entity<Customer>()
.Property(e => e.LastName)
.IsUnicode(false);
modelBuilder.Entity<Customer>()
.Property(e => e.PhoneNumber)
.IsUnicode(false);
modelBuilder.Entity<Customer>()
.Property(e => e.Email)
.IsUnicode(false);
modelBuilder.Entity<Customer>()
.Property(e => e.Address1)
.IsUnicode(false);
modelBuilder.Entity<Customer>()
.Property(e => e.Address2)
.IsUnicode(false);
modelBuilder.Entity<Customer>()
.Property(e => e.City)
.IsUnicode(false);
modelBuilder.Entity<Customer>()
.Property(e => e.State)
.IsUnicode(false);
modelBuilder.Entity<Customer>()
.Property(e => e.Zip)
.IsUnicode(false);
modelBuilder.Entity<Kit>()
.Property(e => e.KitName)
.IsUnicode(false);
modelBuilder.Entity<Loan>()
.Property(e => e.TrackingNumber)
.IsUnicode(false);
modelBuilder.Entity<Product>()
.Property(e => e.ProductName)
.IsUnicode(false);
modelBuilder.Entity<Product>()
.Property(e => e.Description)
.IsUnicode(false);
modelBuilder.Entity<Product>()
.Property(e => e.ProductNumber)
.IsUnicode(false);
modelBuilder.Entity<Product>()
.Property(e => e.SerialNumber)
.IsUnicode(false);
modelBuilder.Entity<Product>()
.Property(e => e.Manufacturer)
.IsUnicode(false);
modelBuilder.Entity<Type>()
.Property(e => e.Type1)
.IsUnicode(false);
modelBuilder.Entity<IdentityUserLogin>()
.HasKey<string>(l => l.UserId);
modelBuilder.Entity<IdentityRole>()
.HasKey<string>(r => r.Id);
modelBuilder.Entity<IdentityUserRole>().HasKey(r => new { r.RoleId, r.UserId });
}
}
}
答案 0 :(得分:1)
DemoPoolEntities
需要继承ApplicationDbContext
public partial class DemoPoolEntities : ApplicationDbContext
{
...
}