我有一个总是返回单行的存储过程 目前我的代码看起来像这样
public void DoSomthing()
{
ObjectResult<pDoesProductExist_Result> pDoesProductExistResults = tbsDBEntities.pDoesProductExist(itemCode);
foreach (pDoesProductExist_Result pDoesProductExistResult in pDoesProductExistResults)
{
return;
}
...
}
有更好的方法吗?
答案 0 :(得分:2)
pDoesProductExist_Result exists = tbsDBEntities.pDoesProductExist(itemCode).Single();