我的代码是
public void MoveProducts(int currentCategoryId, int newCategoryId)
{
_dbContext.Products.Update(p => p.Category.ID = newCategoryId);
}
p => p.Category.Id = newCategoryID 引发错误
Cannot implicitly convert type 'int' to 'DAL.Models.Product
我使用 EntityFramework.Extended 执行批量更新。如何解决这个问题呢 ?