私のコードは
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 を使用して一括更新を実行しました。この問題を解決するには?