如何在MVC 4中使用自己的User表而不是默认的UserProfile?

时间:2012-12-04 05:58:11

标签: asp.net-mvc asp.net-mvc-4 asp.net-membership dbcontext user-profile

我想创建大型用户表(提前用户配置文件)并将用户数据保存在我的数据库上下文中。所以,我不想在我的项目中使用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);
    ....

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

1 个答案:

答案 0 :(得分:1)

您可以将 Asp.net会员和您的复杂类连接在一起。  使用这种方法,您将节省大量时间,因为asp.net成员资格更加强大(您不需要考虑角色和用户管理)并确保您可以使用现有的开源项目,如this和以最少的时间将它添加到您的项目中。 然后你的班级将有如下结构:

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();
        }

并且您的代码中的finnaly可以轻松使用

<p> @User.CustomUserDetail.FullName  </p>