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

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

對.NET內(nèi)置的membership那11張表的深入講解有沒有?

對.NET內(nèi)置的membership那11張表的深入講解有沒有?

RISEBY 2018-11-06 05:02:56
我想深入的了解一下.NET內(nèi)置的membership那11張表的結(jié)構(gòu)及說明,請問有這方面的資料嗎?目前就有個(gè)問題弄不懂,我根據(jù)關(guān)系圖來看,aspnet_Users和aspnet_Membership表是主鍵一對一對應(yīng)的,可是我在用他用久了以后我打開aspnet_Users表的時(shí)候卻發(fā)現(xiàn)里面有好幾個(gè)相同的UserName,只是UserId不同,而aspnet_Membership只對應(yīng)其中的一個(gè)UserId,照常理來講這二張表應(yīng)該是一對一的關(guān)系啊。。怎么會(huì)在aspnet_Users能出現(xiàn)多個(gè)相同的UserName呢?
查看完整描述

2 回答

?
千萬里不及你

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

aspnetdb.mdf數(shù)據(jù)字典 
表名:aspnet_Applications
說明:保存應(yīng)用程序信息 字段名
  類型  屬性 說明
 
 ApplicationName  nvarchar(256)    應(yīng)用程序名 
 LoweredApplicationName  nvarchar(256)    小寫的應(yīng)用程序名 
ApplicationId
  uniqueidentifier  PK 應(yīng)用程序的id, GUID值
 
 Description  nvarchar(256)  nullable 應(yīng)用程序的 描述

表名:aspnet_Paths
說明:路徑信息

字段名
  類型  屬性 說明
 
 ApplicationId  uniqueidentifier  FK: appnet_Applications.ApplciationId
  應(yīng)用程序Id 
 PathId  uniqueidentifier  PK  路徑Id 
 Path  nvarchar(256)    路徑信息
 
 LoweredPath
  nvarchar(256)   小寫的路徑信息
 


表名:aspnet_Users
說明:用戶信息
 字段名  類型  屬性  說明 
 ApplicationId  uniqueidentifier    應(yīng)用程序Id 
 UserId
  uniqueidentifier  PK 用戶Id
 
 UserName  nvarchar(256)    用戶名 
 LoweredUserName  nvarchar(256)    小寫的用戶名 
 MobileAlias  nvarchar(16)    移動(dòng)電話的pin碼(未使用) 
 IsAnonymous  bit    是否為匿名用戶 
LastActivityDate
  datetime    最后活動(dòng)日期
 

表名:aspnet_Membership
說明:成員信息
 字段名  類型  屬性  說明 
 ApplicationId  uniqueidentifier  FK: appnet_Applications.ApplciationId 
  應(yīng)用程序Id 
 UserId
  uniqueidentifier  FK: aspnet_Users.UserID
 用戶Id
 
 Password
  nvarchar(128)    密碼
 
 PasswordFormat  int   存儲(chǔ)密碼的格式  
 PasswordSalt  nvarchar(128)   密碼的Hash值
 
 MobilePIN  nvarchar(16)    手機(jī)PIN碼 
 Email
  nvarchar(256)    電子郵件地址
 
 LoweredEmail  nvarchar(256)    小寫的電子郵件地址 
 PasswordQuestion  nvarchar(256)    遺忘密碼問題
 
 PasswordAnswer  nvarchar(128)    遺忘密碼答案 
 IsApproved  bit     
 IsLockedOut  bit    是否鎖住 
 CreateDate  datetime
    創(chuàng)建時(shí)間 
 LastLoginDate  datetime    最后登錄時(shí)間 
 LastPasswordChangedDate  datetime    最后密碼更改時(shí)間 
 LastLockoutDate  datetime    最后一次鎖帳號(hào)的時(shí)間 
 FailedPasswordAttemptCount  int    密碼失敗嘗試次數(shù) 
 FailedPasswordAttemptWindowStart  datetime    密碼失敗嘗試窗口打開時(shí)間 
 FailedPasswordAnswerAttemptCount  int    遺失密碼問題嘗試次數(shù) 
 FailedPasswordAnswerAttemptWindowStart  datetime    遺失密碼問題輸入窗口打開時(shí)間 
 Comment  ntext    備注

表名:aspnet_Roles
說明:角色表
 字段名  類型  屬性  說明 
ApplicationId
  uniqueidentifier  FK: appnet_Applications.ApplciationId 
 應(yīng)用程序Id
 
 RoleId  uniqueidentifier  PK
  角色I(xiàn)d 
 RoleName  nvarchar(256)    角色名稱 
 LoweredRoleName  nvarchar(256)    小的角色名稱 
 Description  nvarchar(256)  nullable  描述

表名:aspnet_UsersInRoles
說明:用戶角色關(guān)系表
 字段名   類型  屬性
 說明 
 UserID  uniqueidentifier  FK: aspnet_Users.UserId
 用戶ID  
 RoleID  uniqueidentifier   FK: aspnet_Roles.RoleId
  角色I(xiàn)D

表名:aspnet_Profile
說明:Profile對象存儲(chǔ)表
字段名
 類型  屬性  說明  
 UserId  uniqueidentifier   FK: aspnet_Users.UserId
  用戶ID 
 PropertyNames  ntext    屬性名稱 
 PropertyValuesString  ntext    字符串值 
 PropertyValuesBinary  image    二進(jìn)制值 
LastUpdatedDate
  datetime   最后更新日期 


查看完整回答
反對 回復(fù) 2018-11-07
?
慕村9548890

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

我覺得微軟的那套有太多無用的東西,不必死扣,我認(rèn)為那套就應(yīng)該是一個(gè)學(xué)習(xí)入門的東西。

查看完整回答
反對 回復(fù) 2018-11-07
  • 2 回答
  • 0 關(guān)注
  • 530 瀏覽

添加回答

舉報(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)