我的存储过程将返回多个结果集。如何使用 EF db first 方法将它们绑定到我的模型?
我的模特
public class SearchCriteriaResults
{
[Key]
public string RecordID { get; set; }
public int? SNO { get; set; }
public int? CountyCode { get; set; }
public string CountyName { get; set; }
}
public class Locations
{
//Locations
public byte section { get; set; }
public byte township { get; set; }
public byte range { get; set; }
}
每个 RecordID 将包含 Locations 中的多条记录。
我的 SP 代码
public List<SearchCriteriaResults> GetRecordDetailsbyID(string RecID)
{
List<SearchCriteriaResults> strResult = new List<SearchCriteriaResults>();
try
{
strResult = objVCHEntities.ExecuteStoreQuery<SearchCriteriaResults> ("[GetRecordDetailsbyID] @RecID={0}", RecID).ToList();
}
catch (Exception ex)
{
throw ex;
}
return strResult;
}
我总是SearchCriteriaResults
从 SP 绑定到 1 条记录。我的 SP 查询
select rd.RecordID,bookType,grantee,grantor from Record rd where rd.RecordID = '12345'
select section from Location where RecordID = '12345'
在上面的查询中,我也可以使用 join,但是如何绑定到我的模型类?