Skip to content
Tag

Perf

7 articles

Coming in Entity Framework 9: Better Query Parameterization
Sql Server thg 9 2, 2026 3 phút đọc

Coming in Entity Framework 9: Better Query Parameterization

Hallelujah. With current versions of Entity Framework, when developers add a mix of parameters and specific values to their query like this: C# 12345 async Task<List<Post>> GetPosts(int id) => await context.Posts .Where( e => e.Title == ...

By Huy Vũ