1
我想寫一個登錄表單。登錄表單使用實體框架和3層體系結構
我的代碼是多少正確?請指導我。
PhonebookDatabaseEntities context = new PhonebookDatabaseEntities();
public bool Accunt(string username ,string password)
{
bool exists = context.Users.Where(u => u.UserName == username && u.Password == password);
return exists;
}
我得到錯誤不能隱式地將類型數據訪問layer.user轉換爲布爾值。 –
使用公共用戶Accunt(字符串用戶名,字符串密碼) –