实体框架代码具有多个结果集和自定义实体的第一个存储过程

时间:2016-10-14 17:23:40

标签: c# sql-server stored-procedures entity-framework-6

我的存储过程返回两组结果。 在我的情况下,ProductSearchResult和ProductSizeResult不是实体,因此我得到一个异常无法找到EntitySet名称'Database.ProductSearchResult'。

我不想在dbcontext中为每个程序结果创建实体,是否有任何解决方案将存储过程映射到自定义对象。

        try
        {
            DbContext.Database.Connection.Open();
            DbDataReader reader = cmd.ExecuteReader();
            result = ((IObjectContextAdapter)DbContext).ObjectContext.Translate<ProductSearchResult>(reader, "ProductSearchResult", MergeOption.AppendOnly).ToList();
            reader.NextResult();
            productSizeResults = ((IObjectContextAdapter)DbContext).ObjectContext.Translate<ProductSizeResult>(reader, "ProductSizeResult", MergeOption.AppendOnly).ToList();
        }
        catch (Exception ex)
        {
            log.Error(ex);
        }
        finally
        {
            DbContext.Database.Connection.Close();
        }

我的自定义实体,

public class ProductSearchResult
{
    public int Id { get; set; }

    public string Name { get; set; }

    public int AvailableQuantity { get; set; }

    public int Price{ get; set; }
}

public class ProductSizeResult
{
    public int Id { get; set; }

    public string Size { get; set; }

    public int Count { get; set; }
}

我的存储过程,

ALTER PROC GetProductResult @PrimaryCategory nvarchar(100)
AS

select P.Id
,P.Name
,PI.AvailableQuantity
,PI.Price
from Products P
inner join ProductInventories PI on P.Id = PI.ProductId
--where clause

select CA.Name Size,count(1) Count 
from Products P
inner join ProductInventories PI on P.Id = PI.ProductId
inner join CustomAttributes CA on PI.CustomAttributeID = CA.Id
--where clause
group by CA.Name

1 个答案:

答案 0 :(得分:0)

根据MSDN

  

翻译&lt; TElement&gt; method允许您对数据源执行标准ADO.NET查询,并将返回的数据行转换为实体对象。

(我的重点)

这意味着类型ProductSizeResultMergeOption必须是映射类型(实体类型)。 {{1}}参数已经或多或少地揭示了这个事实。这是关于如何将对象添加到更改跟踪器,这对非实体类型没有意义。