1
我收到此錯誤時,當我嘗試嚮導航添加新對象 收藏導航屬性可能不會設置。微風,js錯誤可能不會設置收藏導航屬性
這是我的POCO:
public class Category : BaseEntity,IDeletable
{
public Category()
{
Products = new List<Product>();
ChildCategories = new List<Category>();
}
[Required]
[Display(ResourceType = typeof(DelkaShop.Entities.EntityText.EntityText), Name = "EntityName")]
public String Name { get; set; }
[Display(ResourceType = typeof(DelkaShop.Entities.EntityText.EntityText), Name = "ParentCategory")]
public int? ParentCategoryId { get; set; }
[Display(ResourceType = typeof(DelkaShop.Entities.EntityText.EntityText), Name = "ItemsPerPage")]
public int? ItemsPerPage { get; set; }
[InverseProperty("Categories")]
public ICollection<Product> Products { get; set; }
[ForeignKey("ParentCategoryId")]
[Display(ResourceType = typeof(DelkaShop.Entities.EntityText.EntityText), Name = "ParentCategory")]
public Category ParentCategory { get; set; }
public ICollection<Category> ChildCategories { get; set; }
}
在微風中我做服用點像 product.Categories.push(newCategoryObject);
有人能指出我正確的方向嗎?
編輯: 我忘了提及,我得到這個錯誤的多對多關係,只是在文檔中看到,這是不支持。
是否有任何解決方法?
謝謝你的回答。你能指點我一個這種類型的映射曝光的例子嗎? – 2013-02-18 21:59:50
在路上。 EF m-to-m上的網絡搜索應該解釋它諮詢Julie Lerman的書。 – Ward 2013-02-19 07:43:15