C# .net MVC 使用数据库的简单成员身份验证
声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow
原文地址: http://stackoverflow.com/questions/13207893/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me):
StackOverFlow
.net MVC Simple Membership Authentication with Database
提问by TryCatch
Using Code First Entity Framework with .NET MVC 4 I have created a new Web Application and populated the database with object as shown below.
使用带有 .NET MVC 4 的 Code First 实体框架我创建了一个新的 Web 应用程序并用对象填充数据库,如下所示。
public class GratifyGamingContext : DbContext
{
public DbSet<Game> Games { get; set; }
public DbSet<Genre> Genres { get; set; }
public DbSet<UserProfile> UserRepository { get; set; }
}
I want to use my UserRepository table instead of the inbuilt UserContext class from AccountModel.cs for my user account access since I can't get that the work with my existing dbContext.
我想使用我的 UserRepository 表而不是 AccountModel.cs 中的内置 UserContext 类来访问我的用户帐户,因为我无法使用现有的 dbContext。
public class UsersContext : DbContext
{
public UsersContext()
: base("DefaultConnection")
{
}
public DbSet<UserProfile> UserProfiles { get; set; }
}
[Table("UserProfile")]
public class UserProfile
{
[Key]
[DatabaseGeneratedAttribute(DatabaseGeneratedOption.Identity)]
public int UserId { get; set; }
public string UserName { get; set; }
}
My program always crashes when constructing a SimpleMembershipInitializer object from InitializeSimpleMembershipAttribute.cs. I have commented out the code I feel should be irrelevant.
从 InitializeSimpleMembershipAttribute.cs 构造 SimpleMembershipInitializer 对象时,我的程序总是崩溃。我已经注释掉了我认为应该无关紧要的代码。
[AttributeUsage(AttributeTargets.Class | AttributeTargets.Method, AllowMultiple = false, Inherited = true)]
public sealed class InitializeSimpleMembershipAttribute : ActionFilterAttribute
{
private static SimpleMembershipInitializer _initializer;
private static object _initializerLock = new object();
private static bool _isInitialized;
public override void OnActionExecuting(ActionExecutingContext filterContext)
{
// Ensure ASP.NET Simple Membership is initialized only once per app start
LazyInitializer.EnsureInitialized(ref _initializer, ref _isInitialized, ref _initializerLock);
}
private class SimpleMembershipInitializer
{
public SimpleMembershipInitializer()
{
//Database.SetInitializer<UsersContext>(null);
try
{
using (var context = new GratifyGamingContext())
{
if (!context.Database.Exists())
{
// Create the SimpleMembership database without Entity Framework migration schema
((IObjectContextAdapter)context).ObjectContext.CreateDatabase();
}
}
WebSecurity.InitializeDatabaseConnection("DefaultConnection", "UserProfile", "UserId", "UserName", autoCreateTables: true);
}
catch (Exception ex)
{
throw new InvalidOperationException("The ASP.NET Simple Membership database could not be initialized. For more information, please see http://go.microsoft.com/fwlink/?LinkId=256588", ex);
}
}
}
}
My ConnectionString is as follows:
我的 ConnectionString 如下:
<add name="DefaultConnection" connectionString="Data Source=.\SQLEXPRESS;Initial Catalog=aspnet-GratifyGaming-20120917185558;AttachDbFilename=|DataDirectory|\Games.mdf;Integrated Security=True" providerName="System.Data.SqlClient" />
I get the following error when calling the WebSecurity.InitializeDatabaseConnect from any AccountController page:
从任何 AccountController 页面调用 WebSecurity.InitializeDatabaseConnect 时,我收到以下错误:
[SqlException (0x80131904): Directory lookup for the file "C:\Users\Unreal\Documents\Visual Studio 2010\Projects\GratifyGaming\GratifyGaming.WebUI\App_Data\Games.mdf" failed with the operating system error 2(failed to retrieve text for this error. Reason: 15105). Cannot attach the file 'C:\Users\Unreal\Documents\Visual Studio 2010\Projects\GratifyGaming\GratifyGaming.WebUI\App_Data\Games.mdf' as database 'aspnet-GratifyGaming-20120917185558'.]
[TargetInvocationException: Exception has been thrown by the target of an invocation.] System.RuntimeTypeHandle.CreateInstance(RuntimeType type, Boolean publicOnly, Boolean noCheck, Boolean& canBeCached, RuntimeMethodHandleInternal& ctor, Boolean& bNeedSecurityCheck) +0
[SqlException (0x80131904): 文件“C:\Users\Unreal\Documents\Visual Studio 2010\Projects\GratifyGaming\GratifyGaming.WebUI\App_Data\Games.mdf”的目录查找失败,出现操作系统错误 2(无法检索此错误的文本。原因:15105)。无法附加文件“C:\Users\Unreal\Documents\Visual Studio 2010\Projects\GratifyGaming\GratifyGaming.WebUI\App_Data\Games.mdf”作为数据库“aspnet-GratifyGaming-20120917185558”。]
[TargetInvocationException:调用目标已抛出异常。] System.RuntimeTypeHandle.CreateInstance(RuntimeType type, Boolean publicOnly, Boolean noCheck, Boolean& canBeCached, RuntimeMethodHandleInternal& ctor, Boolean& bNeedSecurityCheck) +0
My application is otherwise connected to the database if I do not go to any AccountController driven page. How can I configure this application to use my UserRepository table instead of the UsersContext for user membership?
如果我没有转到任何 AccountController 驱动的页面,我的应用程序会以其他方式连接到数据库。如何配置此应用程序以使用我的 UserRepository 表而不是 UsersContext 作为用户成员资格?
采纳答案by TryCatch
Remove the AttachDbFileName from the DefaultConnectionString in web.config
从 web.config 中的 DefaultConnectionString 中删除 AttachDbFileName
<add name="DefaultConnection" connectionString="Data Source=.\SQLEXPRESS;Initial Catalog=aspnet-GratifyGaming-20120917185558;Integrated Security=True" providerName="System.Data.SqlClient" />
Call the WebSecurity.InitialiseDatabase method in Global.asax.cs
调用 Global.asax.cs 中的 WebSecurity.InitialiseDatabase 方法
public class MvcApplication : System.Web.HttpApplication
{
protected void Application_Start()
{
AreaRegistration.RegisterAllAreas();
Database.SetInitializer<GratifyGamingContext>(new DatabaseInitializer());
WebApiConfig.Register(GlobalConfiguration.Configuration);
FilterConfig.RegisterGlobalFilters(GlobalFilters.Filters);
RouteConfig.RegisterRoutes(RouteTable.Routes);
BundleConfig.RegisterBundles(BundleTable.Bundles);
AuthConfig.RegisterAuth();
WebSecurity.InitializeDatabaseConnection(
connectionStringName: "DefaultConnection",
userTableName: "UserProfile",
userIdColumn: "UserID",
userNameColumn: "UserName",
autoCreateTables: true);
}
}
Comment out [InitializeSimpleMembership] in AccountController.cs
注释掉 AccountController.cs 中的 [InitializeSimpleMembership]
[Authorize]
//[InitializeSimpleMembership]
public class AccountController : Controller

