第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

ASP.Net MVC 使用文檔將默認(rèn)字符串 ID 更改為和 int 獲取錯(cuò)誤

ASP.Net MVC 使用文檔將默認(rèn)字符串 ID 更改為和 int 獲取錯(cuò)誤

C#
蝴蝶刀刀 2022-11-13 13:58:45
我做了一個(gè)基本的 ASP.Net MVC Web 項(xiàng)目。我使用 Microsoft 文檔將我的所有 ID 從string轉(zhuǎn)換為一個(gè)。inthttps://learn.microsoft.com/en-us/aspnet/identity/overview/extensibility/change-primary-key-for-users-in-aspnet-identity#run我做了這些更改 + MVC Update 3 更改。當(dāng)我編譯并運(yùn)行我的新項(xiàng)目時(shí),它int在我的文件中顯示為一個(gè),但我收到錯(cuò)誤并且無法完成運(yùn)行該項(xiàng)目。這是我的消息在輸出中顯示的內(nèi)容:拋出的異常:mscorlib.dll 中的“System.FormatException” mscorlib.dll 中出現(xiàn)“System.FormatException”類型的異常,但未在用戶代碼中處理 輸入字符串的格式不正確。任何輸入將不勝感激。我確實(shí)運(yùn)行了遷移,它顯示為int但沒有在我的瀏覽器中完全運(yùn)行。app.UseCookieAuthentication(new CookieAuthenticationOptions            {                AuthenticationType = DefaultAuthenticationTypes.ApplicationCookie,                LoginPath = new PathString("/Account/Login"),                Provider = new CookieAuthenticationProvider                {                    // Enables the application to validate the security stamp when the user logs in.                    // This is a security feature which is used when you change a password or add an external login to your account.                      OnValidateIdentity = SecurityStampValidator                    .OnValidateIdentity<ApplicationUserManager, ApplicationUser, int>(                        validateInterval: TimeSpan.FromMinutes(30),                        regenerateIdentityCallback: (manager, user) =>                         user.GenerateUserIdentityAsync(manager),                         getUserIdCallback:(id)=>Int32.Parse(id.GetUserId()))                }            });我的代碼在這部分中斷了,那就是異常 id.GetUserId()這是在 startup.auth.cs謝謝你。
查看完整描述

2 回答

?
吃雞游戲

TA貢獻(xiàn)1829條經(jīng)驗(yàn) 獲得超7個(gè)贊

因此,為了回答您的問題,該Parse方法使用當(dāng)前語言環(huán)境將您的字符串轉(zhuǎn)換為整數(shù)。我猜在您的情況下,這GetUserID()將采用您當(dāng)前語言環(huán)境期望逗號(hào)作為小數(shù)點(diǎn)的格式。因此,提供可選參數(shù)CultureInfo.InvariantCulture將使您的區(qū)域設(shè)置文化不敏感。另一種方法是提供第二個(gè)可選參數(shù)來提供IFormatProvider。

要解決您的錯(cuò)誤,請(qǐng)將此行設(shè)置為:

(id)=>Int32.Parse(id.GetUserId(),CultureInfo.InvariantCulture)

有關(guān)CultureInfo.InvariantCulture的更多信息。


查看完整回答
反對(duì) 回復(fù) 2022-11-13
?
躍然一笑

TA貢獻(xiàn)1826條經(jīng)驗(yàn) 獲得超6個(gè)贊

回答我的問題。


在我的 startup.auth.cs


如前所述,我遵循了所有 microsoft 文檔。


運(yùn)行項(xiàng)目時(shí),我不斷收到錯(cuò)誤消息。


在 CookieAuth 下的 ConfigureAuth() 中添加 CultureInfo 作為第二個(gè)參數(shù)。


這是我完成的項(xiàng)目代碼。


                     {

                    // Enables the application to validate the security stamp when the user logs in.

                    // This is a security feature which is used when you change a password or add an external login to your account.  

                    OnValidateIdentity = SecurityStampValidator

                    .OnValidateIdentity<ApplicationUserManager, ApplicationUser, int>

                    (

                        validateInterval: TimeSpan.FromMinutes(30),

                        regenerateIdentityCallback: (manager, user) => 

                        user.GenerateUserIdentityAsync(manager), 

                        getUserIdCallback:(id) => Int32.Parse(id.GetUserId(), 

                        CultureInfo.InvariantCulture)

                        //getUserIdCallback:(id) => (Int32.Parse(id.GetUserId()))

                    )

                }


查看完整回答
反對(duì) 回復(fù) 2022-11-13
  • 2 回答
  • 0 關(guān)注
  • 145 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)