我想创建大型用户表(高级用户配置文件)并将用户数据保存在数据库上下文中。因此,我不想在我的项目中使用2个DbContext。用户注册到站点时,他们的数据(用户名,密码等)存储我自己的用户表。我的课是这样的:
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类的 RegisterModel 和 WebSecurity.CreateUserAndAccount()。但是,它不起作用。
如何使用我自己的User表注册到站点?
最佳答案
您可以将 Asp.net成员资格和复杂的类连接在一起。
通过这种方法,您将节省大量时间,因为asp.net成员身份更加健壮(您无需考虑角色和用户管理),并且可以确保可以利用this之类的现有开源项目并将其添加到您的以最少的时间进行项目。
然后您的 class 将具有以下结构:
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>
关于asp.net-mvc - 如何在MVC 4中使用自己的User表代替默认的UserProfile?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/13696969/