如何对多个函数导入使用相同的复杂类型?

时间:2016-06-30 18:29:59

标签: c# entity-framework model-view-controller

我有一个模型(由实体框架生成的复杂类型),如下所示

public partial class Company
{
    public string CustomerID { get; set; }
    public string CustomerName { get; set; }
    public string CustomerAddress01 { get; set; }
    public string CustomerAddress02 { get; set; }
}

}

我为存储过程添加了2个函数导入。我用来显示我只返回 CompanyID 客户名称的公司列表 Function Import 1 Function Import 2

和第二个存储过程,它返回特定公司的详细信息并“使用”模型中的所有字段

在实体框架中是否有一种方法可以使用相同的复杂类型进行多个函数导入,即使是未使用的字段?如果这不正确,那么这种情况下的最佳做法是什么?

当我试图运行我的GetCompanies时,它抱怨未使用的字段。

0 个答案:

没有答案