0
爲了實現int
主鍵我跟着這篇文章:https://www.asp.net/identity/overview/extensibility/change-primary-key-for-users-in-aspnet-identity更改用戶主鍵ASP.NET身份
它,但編譯在啓動時它給了我這個錯誤消息:
類型的異常mscorlib.dll中出現'System.FormatException',但未在用戶代碼中處理
附加信息:輸入字符串格式不正確。
代碼:
public void ConfigureAuth(IAppBuilder app)
{
// Configure the db context, user manager and signin manager to use a single instance per request
app.CreatePerOwinContext(ApplicationDbContext.Create);
app.CreatePerOwinContext<ApplicationUserManager>(ApplicationUserManager.Create);
app.CreatePerOwinContext<ApplicationSignInManager>(ApplicationSignInManager.Create);
// Enable the application to use a cookie to store information for the signed in user
// and to use a cookie to temporarily store information about a user logging in with a third party login provider
// Configure the sign in cookie
app.UseCookieAuthentication(new CookieAuthenticationOptions
{
AuthenticationType = DefaultAuthenticationTypes.ApplicationCookie,
LoginPath = new PathString("/Account/Login"),
Provider = new CookieAuthenticationProvider
{
OnValidateIdentity = SecurityStampValidator.OnValidateIdentity<ApplicationUserManager, ApplicationUser, int>(
validateInterval: TimeSpan.FromMinutes(30),
regenerateIdentityCallback: (manager, user) =>
user.GenerateUserIdentityAsync(manager),
================================================================================
getUserIdCallback: (id) => (id.GetUserId<int>() <<===== THIS IS WHERE I GET THE ERROR MESSAGE))
================================================================================
}
});
app.UseExternalSignInCookie(DefaultAuthenticationTypes.ExternalCookie);
// Enables the application to temporarily store user information when they are verifying the second factor in the two-factor authentication process.
app.UseTwoFactorSignInCookie(DefaultAuthenticationTypes.TwoFactorCookie, TimeSpan.FromMinutes(5));
// Enables the application to remember the second login verification factor such as phone or email.
// Once you check this option, your second step of verification during the login process will be remembered on the device where you logged in from.
// This is similar to the RememberMe option when you log in.
app.UseTwoFactorRememberBrowserCookie(DefaultAuthenticationTypes.TwoFactorRememberBrowserCookie);
// Uncomment the following lines to enable logging in with third party login providers
//app.UseMicrosoftAccountAuthentication(
// clientId: "",
// clientSecret: "");
//app.UseTwitterAuthentication(
// consumerKey: "",
// consumerSecret: "");
//app.UseFacebookAuthentication(
// appId: "",
// appSecret: "");
//app.UseGoogleAuthentication(new GoogleOAuth2AuthenticationOptions()
//{
// ClientId = "",
// ClientSecret = ""
//});
}
有誰知道問題出在哪裏?
'輸入字符串的格式不正確'表示從id傳入的字符串值可能不是有效的數字。您可以使用'getUserIdCallback:(id)=>(int.Parse(id.GetUserId()))'將它解析爲表的PK的整數值。 –
謝謝@TetsuyaYamamoto這給了我同樣的錯誤信息。 – dsb
嘗試從瀏覽器cookie存儲中刪除/清除與您的網站/本地主機相關的所有Cookie,我之前完成了此操作,並且突然修復了所有內容。 –