確定後在web.config產生連結字串
以上為 database-first
----------------------------------------------------------------
在指定的資料庫裏面有一個資料表Users,想要讓WebSecurity使用時修改了
WebSecurity.InitializeDatabaseConnection("DefaultConnection", "UserProfile", "UserId", "UserName", autoCreateTables: true);
為
WebSecurity.InitializeDatabaseConnection("TestDbEntities", "Users", "UserId", "UserName", autoCreateTables: true);我將預設產生的DefaultConnection改為TestDbEntities是,並將UserProfile資料表改為Users開始執行網站,當執行到上面這段修改過的程式時, 發生錯誤:找不到必要的 .Net Framework Data Provider。可能尚未安裝。
看來membership服務認不出entity framework的連結字串,因此將連結字串改回用DefaultConnection,並修改內容:
<add name="DefaultConnection" connectionString="Data Source=(LocalDb)\v11.0;Initial Catalog=TestDb;Integrated Security=SSPI;" providerName="System.Data.SqlClient" />
沒有留言:
張貼留言