News

What's New in Entity Framework Core 5.0 Preview 7

Microsoft shipped the seventh preview of Entity Framework Core 5.0, boosting its data access technology with a factory to create DbContext instances and more.

A DbContext instance represents a session with the database and can be used to query and save instances of entities, Microsoft says.

The new EF Core 5.0 Preview 7 discusses AddDbContextFactory and AddPooledDbContextFactory, introduced in EF Core 5.0 to register a factory for creating DbContext instances in an application's dependency injection container. The factory helps developers create and use instances as needed.

"Note that the DbContext instances created in this way are not managed by the application's service provider and therefore must be disposed by the application," said Jeremy Likness, senior program manager for .NET Data and .NET, in a July 21 blog post. "This decoupling is very useful for Blazor applications, where using IDbContextFactory is recommended, but may also be useful in other scenarios."

Other highlights of Preview 7 listed by Likness include:

  • Reset DbContext state: This provides the option to reset the state of a DbContext instance, something that normally isn't required if developers follow the best practice of creating new, short-lived context instances for each unit-of-work.
  • New pattern for store-generated defaults: This addresses problems in certain circumstances when explicit values are set for columns that may also have default value constraints. In these scenarios, EF Core 5.0 now allows the backing field to be nullable.
  • Savepoints: These provide greater control over transactions that execute multiple operations, giving developers the ability to manually create them, release them and roll them back.
  • Cosmos partition keys: Cosmos partition keys are included in EF models, and in Preview 7 the partition key is included in the entity type's PK and is used to improved performance in some queries.
  • Cosmos configuration: EF Core 5.0 improves configuration of Cosmos and Cosmos connections, improving on the previous scheme of EF Core requiring the end-point and key to be specified explicitly when connecting to a Cosmos database. "EF Core 5.0 allows use of a connection string instead," Likness said. "In addition, EF Core 5.0 allows the WebProxy instance to be explicitly set."
  • Scaffold-DbContext now singularizes: "Previously when scaffolding a DbContext from an existing database, EF Core will create entity type names that match the table names in the database. For example, tables People and Addresses resulted in entity types named People and Addresses.

    "In previous releases, this behavior was configurable through registration of a pluralization service. Now in EF Core 5.0, the Humanizer package is used as a default pluralization service. This means tables People and Addresses will now be reverse engineered to entity types named Person and Address."

All of the above and more is presented in greater detail in the "what's new" notes, which also include information on previous previews.

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