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 at Converge 360.

comments powered by Disqus

Featured

  • IDE Irony: Coding Errors Cause 'Critical' Vulnerability in Visual Studio

    In a larger-than-normal Patch Tuesday, Microsoft warned of a "critical" vulnerability in Visual Studio that should be fixed immediately if automatic patching isn't enabled, ironically caused by coding errors.

  • Building Blazor Applications

    A trio of Blazor experts will conduct a full-day workshop for devs to learn everything about the tech a a March developer conference in Las Vegas keynoted by Microsoft execs and featuring many Microsoft devs.

  • Gradient Boosting Regression Using C#

    Dr. James McCaffrey from Microsoft Research presents a complete end-to-end demonstration of the gradient boosting regression technique, where the goal is to predict a single numeric value. Compared to existing library implementations of gradient boosting regression, a from-scratch implementation allows much easier customization and integration with other .NET systems.

  • Microsoft Execs to Tackle AI and Cloud in Dev Conference Keynotes

    AI unsurprisingly is all over keynotes that Microsoft execs will helm to kick off the Visual Studio Live! developer conference in Las Vegas, March 10-14, which the company described as "a must-attend event."

  • Copilot Agentic AI Dev Environment Opens Up to All

    Microsoft removed waitlist restrictions for some of its most advanced GenAI tech, Copilot Workspace, recently made available as a technical preview.

Subscribe on YouTube