entity-framework-plus Questions
1
Solved
I want to perform a bulk update for a Million+ rows.
However, I don't want to update the whole table, but rather in smaller batches (to prevent locking the whole table). Say every 10,000 rows.
Eg, ...
Changteh asked 18/8, 2020 at 4:41
1
Solved
I am trying to filter three child levels down and find only child elements where PropertyMailingAddress.Status== True.
How do I convert filter three levels down and conduct nested filtering with E...
Mccusker asked 27/5, 2020 at 1:13
1
Solved
I have the following function which is actually a wrapper around Z.EntityFramework.Plus bulk update:
public static int UpdateBulk<T>(this IQueryable<T> query, Expression<Func<T,...
Ultracentrifuge asked 23/8, 2018 at 1:33
1
Solved
The library Entity.Framework.Extensions (paid) has a method for doing entity updates:
context.Customers
.Where(c=>c.XXX = "")
.UpdateFromQuery(c=>new Customer{ Timestamp = DateTime.UtcNow }...
Karyogamy asked 22/9, 2017 at 7:4
1
© 2022 - 2024 — McMap. All rights reserved.