Home > レコード更新


Entity Frameworkを使用して複数のレコードを更新する方法

単一のクエリで複数のレコードを更新する方法:using (var context = new YourDbContext()) { var recordsToUpdate = context.YourEntity.Where(e => e.Condition == true).ToList(); foreach (var record in recordsToUpdate) { record.Property1 = newValue1; record.Property2 = newValue2; // 必要なプロパテ>>More