它说我的返回值在当前上下文中不存在(accessHelper),我不知道问题是什么?
额外的问题,有人能告诉我“new”关键字的作用吗?我看过的所有教程都在那里,但没有解释它的作用。
public AccessHelper GetAccessHelper(int id)
{
using (SqlConnection sqlCon = new SqlConnection("Data Source = QL01; Initial Catalog = SCAM; Integrated Security = True"))
{
var accessHelper = sqlCon.Query<AccessHelper>("getAccessHelper", new { id }, commandType: System.Data.CommandType.StoredProcedure);
}
return accessHelper;
}
明月笑刀无情
相关分类