Skip to content

v1.4.41

Choose a tag to compare

@JonathanMagnan JonathanMagnan released this 08 Apr 18:02
· 550 commits to master since this release

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 } );