我有一个 CustomProductProperty 模型,允许用户拥有自己产品的自定义字段,其中包含一个 CustomDataType 模型,该模型链接到处理用户定义的数据类型的数据库。
[Table("Product")]
public class Product
{
[Key]
[DatabaseGenerated(DatabaseGeneratedOption.Identity)]
public int ProductID { get; set; }
public int ProductTypeID { get; set; }
[Display(Name = "Product Name")]
public string ProductName { get; set; }
[ForeignKey("ProductTypeID")]
[Display(Name = "Product Type")]
public virtual ProductType ProductType { get; set; }
public virtual ICollection<CustomProductProperty> CustomProperties { get; set; }
}
[Table("CustomProductProperty")]
public class CustomProductProperty
{
[Key]
[DatabaseGenerated(DatabaseGeneratedOption.Identity)]
public int CustomPropertyID { get; set; }
public int CustomDataTypeID { get; set; }
[ForeignKey("CustomDataTypeID")]
public virtual CustomDataType DataType { get; set; }
public int ProductID { get; set; }
[ForeignKey("ProductID")]
public virtual Product Product { get; set; }
public string PropertyValue { get; set; }
}
[Table("CustomDataType")]
public class CustomDataType
{
[Key]
[DatabaseGenerated(DatabaseGeneratedOption.Identity)]
public int CustomTypeID { get; set; }
public string PropertyName { get; set; }
public CustomDataTypes DataType { get; set; }
public int ModuleID { get; set; }
[ForeignKey("ModuleID")]
public Module Module { get; set; }
}
尝试在我的视图中显示此内容时,我创建了一个显示模板来处理 CustomProductProperty 的 ICollection&lt;&gt; 由于某种原因,DataType.PropertyName
是空的,但PropertyValue
仍然会返回正确的数据,有人知道为什么PropertyName
为空吗?
@model IEnumerable<InventoryManager.Models.CustomProductProperty>
@{
Layout = null;
}
@foreach (var item in Model)
{
<tr>
<th>@Html.DisplayFor(model => item.DataType.PropertyName)</th>
<td>@Html.DisplayFor(model => item.PropertyValue)</td>
</tr>
}
答案 0 :(得分:1)
你应该添加一些代码来展示你如何将这个模型传递给视图,但我的猜测是它是由Lazy Loading引起的。您有DataType
虚拟属性,您没有在控制器中评估,因此它不是从数据库加载的...在LINQ查询中使用Include
方法进行预先加载
答案 1 :(得分:0)
确保在将模型传递给视图之前加载DataType
属性(如果它是延迟加载的,可能不是这种情况)。
您使用的是ORM吗?您可能需要先加入 - 如果您提供有关您正在使用的提供商类型的更多详细信息,我们应该能够提供示例代码。