4

我有一个名为 Product 的类,其结构如下:

    public class Product
  {
    public long Id { get; set; }

    public string Title { get; set; }

    public string Summary { get; set; }

    public string Description { get; set; }

    public long ProductCategoryId { get; set; }

    public virtual ProductCategory ProductCategory { get; set; }

    public ConstantPost ConstantPost { get; set; }

  }

有一个复杂的类型叫做 ConstantPost。当我想执行一个名为 MostBought 的存储过程时,我收到此错误:
无法为“Domain.ConstantPost”类型的属性“ConstantPost”创建值。仅支持原始类型的属性。

执行存储过程时如何忽略复杂类型。

提前致谢。

4

1 回答 1

3

目前不支持此功能。您不能从 中返回包含复杂类型的实体SqlQuery

于 2012-05-28T09:50:05.790 回答