所以基本上在最后学习how to change OpenAuth to not use DefaultConnection in .NET 4.5之后,我已经转到了4.5.1,让那些学习变得毫无意义。 AuthConfig.cs的职责现在位于Startup.Auth.cs中,OpenAuth的静态方法已被抽象出来,因此我无法再直接更改OpenAuth.ConnectionString的默认值。
在.NET 4.5.1中更改成员身份的连接字符串/数据库的最佳做法是什么?
答案 0 :(得分:13)
我遵循了你建议的方法,它对我有用。然而,几乎没有什么东西,语法和命名问题恰好是不同的。我认为这些差异可能是由于我们使用的Visual Studio的不同版本(而不是.NET - 我的版本是.NET 4.5.1的版本)。我继续描述我的具体解决方案。
我的目标是拥有一个数据库上下文,我可以使用该上下文访问用户或身份相关数据以及我的自定义应用程序数据。为了实现这一点,我完全删除了在创建新项目时自动为您创建的类ApplicationDbContext
。
然后,我创建了一个新类MyDbContext
。
public class MyDbContext: DbContext
{
public MyDbContext() : base("name=DefaultConnection")
{
}
//
// These are required for the integrated user membership.
//
public virtual DbSet<IdentityRole> Roles { get; set; }
public virtual DbSet<ApplicationUser> Users { get; set; }
public virtual DbSet<IdentityUserClaim> UserClaims { get; set; }
public virtual DbSet<IdentityUserLogin> UserLogins { get; set; }
public virtual DbSet<IdentityUserRole> UserRoles { get; set; }
public DbSet<Movie> Movies { get; set; }
public DbSet<Order> Orders { get; set; }
public DbSet<Purchase> Purchases { get; set; }
}
字段Roles
,Users
,UserClaims
,UserLogins
,UserRoles
是会员管理所需的建议。但是,在我的情况下,他们的类型有不同的名称(ApplicationUser
而不是User
,IdentityUserClaim
而不是UserClaim
等等。我想这就是为什么Antevirus有“无法找到用户”的原因。
另外,正如我们在案例中看到的那样,有5个这样的字段而不是8个。可能这是由于Visual Studio的不同版本。
我做的最后一次更改是在课程AccountController
中,它反映了新上下文MyDbContext
的使用。在这里,我传递了MyDbContext
而不是ApplicationDbContext
在
public AccountController()
: this(new UserManager<ApplicationUser>(new UserStore<ApplicationUser>(new ApplicationDbContext())))
{
}
在
public AccountController()
: this(new UserManager<ApplicationUser>(new UserStore<ApplicationUser>(new MyDbContext())))
{
}
答案 1 :(得分:8)
适用于Microsoft.AspNet.Identity.EntityFramework 1.0.0-rc1
在AccountController的无参数构造函数中,更改行
IdentityManager = new AuthenticationIdentityManager(new IdentityStore());
到
IdentityManager = new AuthenticationIdentityManager(new IdentityStore(new DefaultIdentityDbContext("YourNameOrConnectionString")));
你很高兴。
适用于Microsoft.AspNet.Identity.EntityFramework 1.0.0
与我们为候选版本所做的类似,但我们在不同的地方执行此操作。打开作为VS模板一部分创建的IdentityModels.cs
,并将以下构造函数添加到ApplicationDbContext
类:
public ApplicationDbContext(string nameOrConnectionString)
: base(nameOrConnectionString)
{
}
现在可以从{/ 1>}更改<{1}}中的无参数构造函数
AccountController
到
public AccountController()
: this(new UserManager<ApplicationUser>(new UserStore<ApplicationUser>(new ApplicationDbContext())))
{
}
并完成了。