Download the library here
BatchUpdate (EF Core)
- ADDED: Support to InMemory (Issue #149)
BatchUpdateManager.InMemoryDbContextFactory = () => new MyContext(db.Options);
int value = 24234;
_context.Foos.Where(x => x.ColumnInt < 10).Update(foo => new Foo {Name = foo.Name + "2", T2 = value } );