entity-framework-extensions Questions
2
Solved
I am currently using EF Extensions. One thing I don't understand, "its supposed to help with performance"
however placing a million+ records into List variable, is a Memory Issue itself.
...
Cryptanalysis asked 17/8, 2020 at 22:16
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.