我有一个名为 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”创建值。仅支持原始类型的属性。
执行存储过程时如何忽略复杂类型。
提前致谢。