2
我在EF6中遇到了一個非常奇怪的行爲。我有插入失敗的實體,但是當我列舉的實體,在第一時間之後,我檢索由實體框架電動工具實體框架返回數據庫中不存在的實體
public partial class Category
{
public Category()
{
this.Products = new List<Product>();
this.TranslationCategories = new List<TranslationCategory>();
}
public int CategoryId { get; set; }
public Nullable<int> ParentCategoryId { get; set; }
public string Reference { get; set; }
public System.DateTime CreationDate { get; set; }
public string Name { get; set; }
public Nullable<bool> Published { get; set; }
public string Artwork { get; set; }
public string TypeCode { get; set; }
public virtual ICollection<Product> Products { get; set; }
public virtual ICollection<TranslationCategory> TranslationCategories {get;set; }
}
可以顯示類別和db類的代碼嗎? –
如果使用'SaveChanges'而不是'SaveChangesAsync',該怎麼辦? – Hopeless
@Hopless已經嘗試過了,同樣奇怪的行爲。 – BobyOneKenobi