Entityframework .Select vs Mapping method [Answered]
Is the following the same or has it performance difference?
4 Replies
Also which one is prefered more.. ?
The first one will generate SQL that only fetches the necessary data
The second one will fetch everything, and map the data afterwards
Using
.Select()
before the query gets resolved will always result in less data being fetched, and fewer memory allocationsUnknown User•3y ago
Message Not Public
Sign In & Join Server To View
✅ This post has been marked as answered!