我目前正在开展一个学习项目,在那里我曾经使用带有sql数据库的表单auth。但今天我已更新为使用Indetity。 我现在遇到的问题是我的网站存储的不仅仅是用户信息,我希望它与Identity数据位于同一个数据库中。 当我使用成员身份时这没问题,我只是添加了一个连接字符串并编写了一个SQL语句。但是现在看来我需要添加一个名为DbContext的东西? 也许更容易看到我的代码来理解,这是我的旧代码,用于旧的SQL数据库:
using (SqlConnection con = new SqlConnection(strCon))
{
using (SqlCommand cmd = con.CreateCommand())
{
cmd.CommandText = "INSERT INTO Website (url, rating, categoryId, subCategoryId, description1, description2) values (@url, @rating, @categoryId, @subCategoryId, @desc1, @desc2)";
cmd.Parameters.AddWithValue("@url", url);
cmd.Parameters.AddWithValue("@rating", rating);
cmd.Parameters.AddWithValue("@categoryId", categoryId);
cmd.Parameters.AddWithValue("@desc1", desc1);
cmd.Parameters.AddWithValue("@desc2", desc2);
if (DPLSubCategory.Items != null)
{
Int32 subCategoryId = Convert.ToInt32(DPLSubCategory.SelectedItem.Value);
cmd.Parameters.AddWithValue("@subCategoryId", subCategoryId);
}
con.Open();
cmd.ExecuteNonQuery();
}
con.Close();
}
现在说我在本地身份数据库中添加了一个“网站”表。我怎样才能做与上面代码类似的事情?现在我使用默认的连接字符串:
<add name="DefaultConnection" connectionString="Data Source=(LocalDb)\v11.0;AttachDbFilename=|DataDirectory|\WDBAPP.mdf;Initial Catalog=WDBAPP;Integrated Security=True" providerName="System.Data.SqlClient"/>
我添加这样的成员:
// Default UserStore constructor uses the default connection string named: DefaultConnection
var userStore = new UserStore<IdentityUser>();
var manager = new UserManager<IdentityUser>(userStore);
var user = new IdentityUser() { UserName = UserName.Text };
IdentityResult result = manager.Create(user, Password.Text);
if (result.Succeeded)
{
var authenticationManager = HttpContext.Current.GetOwinContext().Authentication;
var userIdentity = manager.CreateIdentity(user, DefaultAuthenticationTypes.ApplicationCookie);
authenticationManager.SignIn(new AuthenticationProperties() { }, userIdentity);
Response.Redirect("~/Login.aspx");
}
正如您所看到的,我没有必要指向我的数据库,因为我使用默认的连接字符串。
那么如何将我的连接字符串更改为“MyConString”并仍然可以使用注册码?我希望能够从我的代码中指向我的数据库,以便我可以添加我想要的任何内容。
答案 0 :(得分:0)
Web表单没有我能找到的applicationdbcontext类 并修改,我不知道如何创建一个。
VS 2013中的默认Web表单模板具有 ApplicationDbContext 。
如果您是ASP.Net Identity的新手,您需要先使用VS创建的默认模板,然后再手动滚动自己的 UserManager ,因为很多事情都可能很容易出错。
如果要在现有数据库中保留ASP.Net Identity,则需要将其重命名为现有连接字符串。