3

我想创建大型用户表(高级用户配置文件)并将用户数据保存在我的数据库上下文中。所以,我不想在我的项目中使用 2 个 DbContexts。当用户注册到站点时,他们的数据(用户名、密码等)存储我自己的用户表。我的课是这样的:

public class ModelBase
    {
        public int Id { get; set; }
        public DateTime CreateDate { get; set; }
        public DateTime LastUpdateDate { get; set; }
    }

public class User : ModelBase
    {
        public string UserName { get; set; }
        public string Password{ get; set; }
        public string FullName { get; set; }
        public string Email { get; set; }
        public DateTime BirthDate { get; set; }
        public string Specialty { get; set; }
    }

public class News : ModelBase
    {
            public int UserId { get; set; }
            public string Title { get; set; }
            ...
    }

    ....

上下文是这样的:

public class MyDBContext : DbContext
    {
        public MyDBContext()
        {
            Database.SetInitializer<MyDBContext>(new MyDBContextInitializer());
        }

        public DbSet<User> UserSet { get; set; }
        public DbSet<News> NewsSet { get; set; }
        public DbSet<Project> ProjectSet { get; set; }
        public DbSet<Section> SectionSet { get; set; }
        ....
    }

    class MyDBContextInitializer : DropCreateDatabaseIfModelChanges<MyDBContext>
        {
            protected override void Seed(MyDBContext context)
            {
                base.Seed(context);
            }
        }

我用我的 DbContext 名称替换了默认 SimpleMembershipInitializer类中的连接名称,如下所示:

  ....
     Database.SetInitializer<MyDBContext>(null);

                try
                {
                    using (var context = new MyDBContext())
                    {
                        if (!context.Database.Exists())
                        {
                            // Create the SimpleMembership database without Entity Framework migration schema
                            ((IObjectContextAdapter)context).ObjectContext.CreateDatabase();
                        }
                    }

                    WebSecurity.InitializeDatabaseConnection("MyDBContextConnection", "User", "Id", "UserName", autoCreateTables: true);
    ....

最后,我更改了 适合我的 User 类的RegisterModelWebSecurity.CreateUserAndAccount() 。但是,它不起作用。 如何使用我自己的用户表注册到站点?

4

1 回答 1

1

您可以将Asp.net Membership和您的复杂类连接在一起。使用这种方法,您将节省大量时间,因为 asp.net 成员身份更加强大(您无需考虑角色和用户管理),并且确保您可以利用现有的开源项目并将其添加到您用最少的时间完成项目。然后你的类将具有如下结构:

public class CustomUserDetail : ModelBase
    {
        public string UserName { get; set; } // what you really need is this to be unique for each user in you data base
        // public string Password{ get; set; } handled by asp.net Membership
        public string FullName { get; set; }
        // public string Email { get; set; } handled by asp.net Membership
        public DateTime BirthDate { get; set; }
        public string Specialty { get; set; }
    }

然后您可以向IPrincipal添加扩展方法,例如:

public static CustomUserDetail CustomUserDetail (this IPrincipal principal)
        {
            var repository = new  YourUserDetailRepository();
            return repository.GetCurrentUserDetail();
        }

并最终在您的代码中轻松使用

<p> @User.CustomUserDetail.FullName  </p>
于 2012-12-04T07:54:30.310 回答