Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to improve query performance by explicit compilation of EF Core

2025-04-05 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/01 Report--

This article mainly explains "EF Core how to improve query performance through explicit compilation". The content in the article is simple and clear, and it is easy to learn and understand. Please follow the editor's ideas to study and learn "how EF Core improves query performance through explicit compilation".

Before going into the details, it's important to note that EF Core already uses a cache for expression compilation; when your code needs to reuse a previously executed query, EF Core uses a hash to find and return the compiled query from the cache.

However, you may want to compile the query directly, skipping hash calculations and caching lookups. We can do this by using the following two methods in the EF static class:

EF.CompileQuery ()

EF.CompileAsyncQuery ()

These methods allow you to define a compiled query and then call it by calling a delegate.

In order to avoid differences in test results due to database queries, we use an in-memory database here, which costs less and avoids the problems caused by database optimization execution plans and caching.

Entity definition previous database DbContext

Define entity

Here we define a Category entity type, which is very simple and has only two attributes.

Public class Category {public Guid Id {get; set;} public string Name {get; set;}}

Database DbContext

In the FillCategories method, add three records to the in-memory database.

Public class TestDbContext: DbContext {public TestDbContext (DbContextOptions options): base (options) {} public DbSet Categories {get; set;} public void FillCategories () {var foodCategory = new Category {Id = Guid.NewGuid (), Name = "Food"} Categories.AddRange (foodCategory, new Category {Id = Guid.NewGuid (), Name = "Drinks"}, new Category {Id = Guid.NewGuid (), Name = "Clothing"}, new Category {Id = Guid.NewGuid () Name = "Electronis"}) SaveChanges (true);}} Test code public class CompileQueryTest {private Func _ getCategory = EF.CompileQuery ((TestDbContext context, Guid id) = > context.Categories.FirstOrDefault (c = > c.Id = = id)); private readonly TestDbContext _ dbContext; public CompileQueryTest () {var options = new DbContextOptionsBuilder (). UseInMemoryDatabase (Guid.NewGuid (). ToString ()). Options Var context = new TestDbContext (options); context.FillCategories (); _ dbContext = context;} private readonly Guid _ queryId = Guid.NewGuid (); [Benchmark] public void CompiledQuery () {_ = _ getCategory (_ dbContext, _ queryId) } [Benchmark] public void UnCompiledQuery () {_ = _ dbContext.Categories.FirstOrDefault (c = > c.Id = = _ queryId);}}

To get closer to the test results, we create TestDbContext objects in the constructor and populate the database.

Test result

We use Benchmark.Net for benchmark testing, and the test results are as follows:

MethodMeanErrorStdDevCompiledQuery10.59 us0.0580 us0.0543 usUnCompiledQuery79.55 us0.7860 us0.7353 us thank you for reading, the above is the content of "how EF Core improves query performance through explicit compilation". After the study of this article, I believe you have a deeper understanding of how EF Core can improve query performance through explicit compilation, and the specific use needs to be verified in practice. Here is, the editor will push for you more related knowledge points of the article, welcome to follow!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report