News

Microsoft Calls Entity Framework Core 7 Preview 6 the 'Performance Edition'

"Performance is always high on our priorities in EF Core," Microsoft said in announcing the new Entity Framework Core 7 Preview 6 release, which the company dubbed the "performance edition."

It debuted this week along with .NET 7 Preview 6.

"For EF Core 6.0, we concentrated on improving the performance of non-tracking queries, achieving a very significant speedup and making EF Core comparable to raw SQL queries using Dapper," said an announcement post by Microsoft's Shay Rojansky, who pointed here for more information on that EF6 performance edition. "For EF Core 7.0, we targeted EF Core's 'update pipeline': that's the component that implements SaveChanges, and is responsible for applying inserts, updates and deletions to your database."

While query optimizations in EF Core 6.0 sought to reduce query execution times, the update pipeline improvements in .NET 7.0 were different, providing opportunities to improve the SQL sent by EF to the database, along with the number of network roundtrips that occur upon a SaveChanges command. Rojansky said the latter is particularly important for modern application performance in these ways:

  • Network latency is typically a significant factor (sometimes measured in milliseconds), so eliminating an unneeded roundtrip can be far more impactful than many micro-optimizations in the code itself.
  • Latency also varies based on various factors, so eliminating a roundtrip has an increasing effect the higher the latency.
  • In traditional on-premises deployment the database server is typically located close to the application servers. In the cloud environment the database server tends to be farther away, increasing latency.

Rojansky said that in some scenarios the dev team is seeing a 74 percent reduction in time taken for network roundtrips: "That's a four-fold improvement!"

With the release's focus on performance, the bulk of the announcement is devoted to explaining performance enhancements in the following areas (with links to quickly go to more information on each):

Highly Requested Features
[Click on image for larger view.] Highly Requested Features (source: Microsoft).

Going forward the Plan for Entity Framework Core 7.0 lists highly requested features, depicted above.

Open Issues
[Click on image for larger view.] Open Issues (source: Microsoft).

Specifically, the team will address many open issues listed in the project's GitHub repo, some of which are listed in the graphic above.

As can be seen, "Map JSON values stored in database to EF properties" tops the list when it's ordered by the number of 👍 reactions.

Much more information on the plan for EF7 can be found in the GitHub "issues and feature requests for EF Core" page, along with the EF Core releases and planning roadmap.

About the Author

David Ramel is an editor and writer for Converge360.

comments powered by Disqus

Featured

  • Full Stack Hands-On Development with .NET

    In the fast-paced realm of modern software development, proficiency across a full stack of technologies is not just beneficial, it's essential. Microsoft has an entire stack of open source development components in its .NET platform (formerly known as .NET Core) that can be used to build an end-to-end set of applications.

  • .NET-Centric Uno Platform Debuts 'Single Project' for 9 Targets

    "We've reduced the complexity of project files and eliminated the need for explicit NuGet package references, separate project libraries, or 'shared' projects."

  • Creating Reactive Applications in .NET

    In modern applications, data is being retrieved in asynchronous, real-time streams, as traditional pull requests where the clients asks for data from the server are becoming a thing of the past.

  • AI for GitHub Collaboration? Maybe Not So Much

    No doubt GitHub Copilot has been a boon for developers, but AI might not be the best tool for collaboration, according to developers weighing in on a recent social media post from the GitHub team.

  • Visual Studio 2022 Getting VS Code 'Command Palette' Equivalent

    As any Visual Studio Code user knows, the editor's command palette is a powerful tool for getting things done quickly, without having to navigate through menus and dialogs. Now, we learn how an equivalent is coming for Microsoft's flagship Visual Studio IDE, invoked by the same familiar Ctrl+Shift+P keyboard shortcut.

Subscribe on YouTube