この構造を持つ 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」の値を作成できません。プリミティブ型のプロパティのみがサポートされています。
ストアド プロシージャの実行時に複合型を無視するにはどうすればよいですか。
前もって感謝します。