EFなしでASP MVCに登録およびログインページを作成しようとしています。EFを使用しないASP MVCでのログイン/登録ページの作成方法
私は、このソリューションを書いたが、私はいつも、「接続」と「コマンド」は、現在のコンテキスト内に存在しないというエラー受け取る:、C#ので
public ActionResult Login(Client cmodel)
public string GetPassword(string email)
{
using (connection = new SqlConnection(ConfigurationManager.AppSettings["deliverycon"]))
{
using (command = new SqlCommand(@"select top 1 password from clients where [email protected]", connection))
{
connection.Open();
command.Parameters.AddWithValue("@email", email);
using (reader = command.ExecuteReader())
{
reader.Read();
return reader["password"].ToString;
}
}
}
}
var接続、varコマンド、varリーダーを試してください – derloopkat
次にSqlConnection接続とSqlCommandコマンドを宣言し、最後にSqlDataReaderを宣言する必要があります。 –
ありがとう!しかし、問題は私は文字列に文字列に変換することはできません – Exact