当我尝试插入 ASP的多对多中的链接表时,出现“ NotSupportedException:集合具有固定大小” 。 NET Core 2.2 。 我可以在SQL Server中手动插入值!
我的实体是:
public class Product
{
[key]
public int Id {get;set;}
public ICollection<ProductCategory> ProductCategories { get; set; } = new List<ProductCategory>();
}
public class Category
{
[key]
public int Id {get;set;}
public string Name { get; set; }
public ICollection<ProductCategory> ProductCategories { get; set; } = new List<ProductCategory>();
}
public class ProductCategory
{
[Key]
public int ProductId { get; set; }
public Product Product { get; set; }
[Key]
public int CategoryId { get; set; }
public Category Category { get; set; }
}
在DbContext中:
protected override void OnModelCreating(ModelBuilder modelBuilder)
{
modelBuilder.Entity<ProductCategory>().HasKey(t => new { t.ProductId, t.CategoryId });
modelBuilder.Entity<ProductCategory>()
.HasOne(bc => bc.Product)
.WithMany(b => b.ProductCategories)
.HasForeignKey(bc => bc.ProductId);
modelBuilder.Entity<ProductCategory>()
.HasOne(bc => bc.Category)
.WithMany(c => c.ProductCategories)
.HasForeignKey(bc => bc.CategoryId);
base.OnModelCreating(modelBuilder);
}
public DbSet<Product> Products { get; set; }
public DbSet<Category> Categories { get; set; }
public DbSet<ProductCategory> ProductCategories {get; set;}
我尝试将记录插入“产品和类别”,插入的记录没有问题。 但是,一旦我尝试插入链接记录,就会出现“ NotSupportedException:集合大小固定”的错误。。
插入:
var Electronics = new Category
{
Name = "Electronics",
};
var Exir = new Product
{
Name = "Exir",
};
var pc1 = new ProductCategory();
bc1.Product = Exir ;
bc1.Category = Electronics;
Exir.ProductCategories.Add(pc1);
sqlContext.Categories.Add(Electronics);
sqlContext.Products.Add(Exir);
sqlContext.SaveChanges();
答案 0 :(得分:0)
当使用固定大小的数据结构(如空数组)初始化集合属性时,可能会发生此错误。