您好我正在尝试使用存储过程和实体框架 5 在我的 mvc4 应用程序中访问数据库表。我创建了一个 FormValueModel.edmx 文件并导入了用户表和 GetUser 存储过程
这是 GetUser 存储过程的代码
SELECT
*
FROM
[User].[User]
Where
@UserName = UserName
AND @UserPassword = UserPassword
AND Active = 1
这是我的控制器中访问存储过程的代码
using (var db = new FormValueEntities())
{
string userName ="TestUser"
string password = "Password"
var query = db.GetUser(userName, password);
}
为什么我不能使用 query.UserName 或 query.UserPassword 等访问表。
提前致谢