{"id":33560,"date":"2021-07-14T09:30:59","date_gmt":"2021-07-14T16:30:59","guid":{"rendered":"https:\/\/devblogs.microsoft.com\/dotnet\/?p=33560"},"modified":"2021-07-14T09:30:59","modified_gmt":"2021-07-14T16:30:59","slug":"announcing-entity-framework-core-6-0-preview-6-configure-conventions","status":"publish","type":"post","link":"https:\/\/devblogs.microsoft.com\/dotnet\/announcing-entity-framework-core-6-0-preview-6-configure-conventions\/","title":{"rendered":"Announcing Entity Framework Core 6.0 Preview 6: Configure Conventions"},"content":{"rendered":"<p>Today, the Entity Framework Core team announces the sixth preview release of EF Core 6.0. The team continues work on the features <em>you<\/em> helped prioritize. In addition to adding new capabilities, we are closing the gap between EF Core and EF6. <a href=\"https:\/\/github.com\/dotnet\/efcore\/issues\/24106\">Issue #24106<\/a> shares details about the differences and our roadmap to eliminate it. We are making progress on features like <a href=\"https:\/\/github.com\/dotnet\/efcore\/issues\/19693\">migrations bundles<\/a> and <a href=\"https:\/\/github.com\/dotnet\/efcore\/issues\/24803\">implicit ownership in the Azure Cosmos DB provider<\/a> but are not quite ready for you to test them yet. However, many updates are available right now when you download preview 6 (see the end of this blog post for details on how).<\/p>\n<blockquote><p>\ud83d\udca1 Starting with preview 6, EF Core 6 targets the .NET 6 <a href=\"https:\/\/docs.microsoft.com\/dotnet\/standard\/frameworks\">Target Framework Moniker (TFM)<\/a>.<\/p><\/blockquote>\n<p>A few highlights for this release include:<\/p>\n<ul>\n<li>Support for 64-bit identity seed values<\/li>\n<li>Support for new BCL <code>DateOnly<\/code> and <code>TimeOnly<\/code> structs for SQLite<\/li>\n<li>Uniquify and validate check constraint names<\/li>\n<li><strong>Pre-convention model configuration<\/strong><\/li>\n<li>The items on <a href=\"https:\/\/github.com\/dotnet\/efcore\/issues?q=is%3Aissue+sort%3Aupdated-desc+milestone%3A6.0.0-preview6+is%3Aclosed\">this list<\/a><\/li>\n<\/ul>\n<p>This release supports <strong>pre-convention model configuration<\/strong>. Doing an initial discovery of the model based only on <code>DbSet<\/code> roots was a reasonable approach when it was easy to distinguish likely scalar properties from likely navigation properties. However, as we allow more and more types to be mapped, it has become increasingly problematic to&#8230;<\/p>\n<ul>\n<li>Exclude a type as an entity type and therefore avoid trying to bring it and all its properties into the model<\/li>\n<li>Revert a type from being an entity type when a value converter is found or the type is ignored<\/li>\n<\/ul>\n<p>This results in both bugs and additional overhead. This release, we focused on finding ways to enhance model building so that it can more efficiently figure out what is an entity type and what is not. For example, assume you always store string data as byte arrays. Instead of configuring every single entity, you can use the <code>ConfigureConventions<\/code> override. It looks like this:<\/p>\n<pre><code class=\"language-csharp\">protected override void ConfigureConventions(ModelConfigurationBuilder configurationBuilder)\r\n  {\r\n      configurationBuilder.Properties&lt;string&gt;()\r\n          .HaveConversion&lt;byte[]&gt;()\r\n          .HaveMaxLength(255);\r\n\r\n      configurationBuilder.IgnoreAny&lt;INonPersisted&gt;();\r\n  }<\/code><\/pre>\n<blockquote><p><strong>We want to hear from you!<\/strong> If you and\/or your team are using the Entity Framework Designer (the visual editor for EDMX files in Visual Studio) we&#8217;d like to understand how you use the designer and what might be stopping you from migrating to the latest code base. Give us feedback by commenting on <a href=\"https:\/\/github.com\/dotnet\/efcore\/issues\/25248\">issue #25248<\/a>.<\/p><\/blockquote>\n<h2>How to get EF Core 6.0 previews<\/h2>\n<p>EF Core is distributed exclusively as a set of NuGet packages. For example, to add the SQL Server provider to your project, you can use the following command using the dotnet tool:<\/p>\n<pre><code class=\"language-bash\">dotnet add package Microsoft.EntityFrameworkCore.SqlServer --version 6.0.0-preview.6.21352.1<\/code><\/pre>\n<p>This following table links to the preview 6 versions of the EF Core 6.0 packages and describes what they are used for.<\/p>\n<table>\n<thead>\n<tr>\n<th style=\"text-align: right;\"><strong>Package<\/strong><\/th>\n<th style=\"text-align: left;\"><strong>Purpose<\/strong><\/th>\n<\/tr>\n<\/thead>\n<tbody>\n<tr>\n<td style=\"text-align: right;\"><a href=\"https:\/\/www.nuget.org\/packages\/Microsoft.EntityFrameworkCore\/6.0.0-preview.6.21352.1\">Microsoft.EntityFrameworkCore<\/a><\/td>\n<td style=\"text-align: left;\">The main EF Core package that is independent of specific database providers<\/td>\n<\/tr>\n<tr>\n<td style=\"text-align: right;\"><a href=\"https:\/\/www.nuget.org\/packages\/Microsoft.EntityFrameworkCore.SqlServer\/6.0.0-preview.6.21352.1\">Microsoft.EntityFrameworkCore.SqlServer<\/a><\/td>\n<td style=\"text-align: left;\">Database provider for Microsoft SQL Server and SQL Azure<\/td>\n<\/tr>\n<tr>\n<td style=\"text-align: right;\"><a href=\"https:\/\/www.nuget.org\/packages\/Microsoft.EntityFrameworkCore.SqlServer.NetTopologySuite\/6.0.0-preview.6.21352.1\">Microsoft.EntityFrameworkCore.SqlServer.NetTopologySuite<\/a><\/td>\n<td style=\"text-align: left;\">SQL Server support for spatial types<\/td>\n<\/tr>\n<tr>\n<td style=\"text-align: right;\"><a href=\"https:\/\/www.nuget.org\/packages\/Microsoft.EntityFrameworkCore.Sqlite\/6.0.0-preview.6.21352.1\">Microsoft.EntityFrameworkCore.Sqlite<\/a><\/td>\n<td style=\"text-align: left;\">Database provider for SQLite that includes the native binary for the database engine<\/td>\n<\/tr>\n<tr>\n<td style=\"text-align: right;\"><a href=\"https:\/\/www.nuget.org\/packages\/Microsoft.EntityFrameworkCore.Sqlite.Core\/6.0.0-preview.6.21352.1\">Microsoft.EntityFrameworkCore.Sqlite.Core<\/a><\/td>\n<td style=\"text-align: left;\">Database provider for SQLite <em>without<\/em> a packaged native binary<\/td>\n<\/tr>\n<tr>\n<td style=\"text-align: right;\"><a href=\"https:\/\/www.nuget.org\/packages\/Microsoft.EntityFrameworkCore.Sqlite.NetTopologySuite\/6.0.0-preview.6.21352.1\">Microsoft.EntityFrameworkCore.Sqlite.NetTopologySuite<\/a><\/td>\n<td style=\"text-align: left;\">SQLite support for spatial types<\/td>\n<\/tr>\n<tr>\n<td style=\"text-align: right;\"><a href=\"https:\/\/www.nuget.org\/packages\/Microsoft.EntityFrameworkCore.Cosmos\/6.0.0-preview.6.21352.1\">Microsoft.EntityFrameworkCore.Cosmos<\/a><\/td>\n<td style=\"text-align: left;\">Database provider for Azure Cosmos DB<\/td>\n<\/tr>\n<tr>\n<td style=\"text-align: right;\"><a href=\"https:\/\/www.nuget.org\/packages\/Microsoft.EntityFrameworkCore.InMemory\/6.0.0-preview.6.21352.1\">Microsoft.EntityFrameworkCore.InMemory<\/a><\/td>\n<td style=\"text-align: left;\">The in-memory database provider<\/td>\n<\/tr>\n<tr>\n<td style=\"text-align: right;\"><a href=\"https:\/\/www.nuget.org\/packages\/Microsoft.EntityFrameworkCore.Tools\/6.0.0-preview.6.21352.1\">Microsoft.EntityFrameworkCore.Tools<\/a><\/td>\n<td style=\"text-align: left;\">EF Core PowerShell commands for the Visual Studio Package Manager Console; use this to integrate tools like <a href=\"https:\/\/docs.microsoft.com\/ef\/core\/managing-schemas\/scaffolding\">scaffolding<\/a> and <a href=\"https:\/\/docs.microsoft.com\/ef\/core\/managing-schemas\/migrations\/\">migrations<\/a> with Visual Studio<\/td>\n<\/tr>\n<tr>\n<td style=\"text-align: right;\"><a href=\"https:\/\/www.nuget.org\/packages\/Microsoft.EntityFrameworkCore.Design\/6.0.0-preview.6.21352.1\">Microsoft.EntityFrameworkCore.Design<\/a><\/td>\n<td style=\"text-align: left;\">Shared design-time components for EF Core tools<\/td>\n<\/tr>\n<tr>\n<td style=\"text-align: right;\"><a href=\"https:\/\/www.nuget.org\/packages\/Microsoft.EntityFrameworkCore.Proxies\/6.0.0-preview.6.21352.1\">Microsoft.EntityFrameworkCore.Proxies<\/a><\/td>\n<td style=\"text-align: left;\">Lazy-loading and change-tracking proxies<\/td>\n<\/tr>\n<tr>\n<td style=\"text-align: right;\"><a href=\"https:\/\/www.nuget.org\/packages\/Microsoft.EntityFrameworkCore.Abstractions\/6.0.0-preview.6.21352.1\">Microsoft.EntityFrameworkCore.Abstractions<\/a><\/td>\n<td style=\"text-align: left;\">Decoupled EF Core abstractions; use this for features like extended data annotations defined by EF Core<\/td>\n<\/tr>\n<tr>\n<td style=\"text-align: right;\"><a href=\"https:\/\/www.nuget.org\/packages\/Microsoft.EntityFrameworkCore.Relational\/6.0.0-preview.6.21352.1\">Microsoft.EntityFrameworkCore.Relational<\/a><\/td>\n<td style=\"text-align: left;\">Shared EF Core components for relational database providers<\/td>\n<\/tr>\n<tr>\n<td style=\"text-align: right;\"><a href=\"https:\/\/www.nuget.org\/packages\/Microsoft.EntityFrameworkCore.Analyzers\/6.0.0-preview.6.21352.1\">Microsoft.EntityFrameworkCore.Analyzers<\/a><\/td>\n<td style=\"text-align: left;\">C# analyzers for EF Core<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p>We also published the 6.0 preview 6 release of the <a href=\"https:\/\/www.nuget.org\/packages\/Microsoft.Data.Sqlite.Core\/6.0.0-preview.6.21352.1\">Microsoft.Data.Sqlite.Core<\/a> provider for <a href=\"https:\/\/docs.microsoft.com\/dotnet\/framework\/data\/adonet\/ado-net-overview\">ADO.NET<\/a>.<\/p>\n<h2>Thank you from the team<\/h2>\n<p>A big thank you from the EF team to everyone who has used EF over the years!<\/p>\n<table>\n<tbody>\n<tr>\n<td><a href=\"https:\/\/github.com\/ajcvickers\"><img decoding=\"async\" src=\"https:\/\/devblogs.microsoft.com\/dotnet\/wp-content\/uploads\/sites\/10\/2020\/03\/efteam_ajcvickers.jpeg\" alt=\"ajcvickers\" width=\"200px\" \/>\nArthur Vickers<\/a><\/td>\n<td><a href=\"https:\/\/github.com\/AndriySvyryd\"><img decoding=\"async\" src=\"https:\/\/devblogs.microsoft.com\/dotnet\/wp-content\/uploads\/sites\/10\/2020\/03\/efteam_AndriySvyryd.jpeg\" alt=\"AndriySvyryd\" width=\"200px\" \/>\nAndriy Svyryd<\/a><\/td>\n<td><a href=\"https:\/\/github.com\/bricelam\"><img decoding=\"async\" src=\"https:\/\/devblogs.microsoft.com\/dotnet\/wp-content\/uploads\/sites\/10\/2020\/03\/efteam_bricelam.jpeg\" alt=\"\" width=\"200px\" \/>\nBrice Lambson<\/a><\/td>\n<td><a href=\"https:\/\/github.com\/JeremyLikness\"><img decoding=\"async\" src=\"https:\/\/devblogs.microsoft.com\/dotnet\/wp-content\/uploads\/sites\/10\/2020\/03\/efteam_JeremyLikness.jpeg\" alt=\"JeremyLikness\" width=\"200px\" \/>\nJeremy Likness<\/a><\/td>\n<\/tr>\n<tr>\n<td><a href=\"https:\/\/github.com\/maumar\"><img decoding=\"async\" src=\"https:\/\/devblogs.microsoft.com\/dotnet\/wp-content\/uploads\/sites\/10\/2020\/03\/efteam_maumar.jpeg\" alt=\"maumar\" width=\"200px\" \/>\nMaurycy Markowski<\/a><\/td>\n<td><a href=\"https:\/\/github.com\/roji\"><img decoding=\"async\" src=\"https:\/\/devblogs.microsoft.com\/dotnet\/wp-content\/uploads\/sites\/10\/2020\/03\/efteam_roji-1-300x300.png\" alt=\"roji\" width=\"200px\" \/>\nShay Rojansky<\/a><\/td>\n<td><a href=\"https:\/\/github.com\/smitpatel\"><img decoding=\"async\" src=\"https:\/\/devblogs.microsoft.com\/dotnet\/wp-content\/uploads\/sites\/10\/2020\/03\/efteam_smitpatel.png\" alt=\"smitpatel\" width=\"200px\" \/>\nSmit Patel<\/a><\/td>\n<td><\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<h2>Thank you to our contributors!<\/h2>\n<p>We are grateful to our amazing community of contributors. Our success is founded upon the shoulders of your efforts and feedback. If you are interested in contributing but not sure how or would like help, please reach out to us! We want to help you succeed. We would like to publicly acknowledge and thank these contributors for investing in the success of EF Core 6.0.<\/p>\n<table>\n<thead>\n<tr>\n<th style=\"text-align: center;\"><\/th>\n<th style=\"text-align: center;\"><\/th>\n<th style=\"text-align: center;\"><\/th>\n<th style=\"text-align: center;\"><\/th>\n<\/tr>\n<\/thead>\n<tbody>\n<tr>\n<td style=\"text-align: center;\"><strong><a href=\"https:\/\/github.com\/AkinSabriCam\">AkinSabriCam<\/a><\/strong><\/td>\n<td style=\"text-align: center;\"><strong><a href=\"https:\/\/github.com\/alexernest\">alexernest<\/a><\/strong><\/td>\n<td style=\"text-align: center;\"><strong><a href=\"https:\/\/github.com\/alexpotter10\">alexpotter10<\/a><\/strong><\/td>\n<td style=\"text-align: center;\"><strong><a href=\"https:\/\/github.com\/Ali-YousefiTelori\">Ali-YousefiTelori<\/a><\/strong><\/td>\n<\/tr>\n<tr>\n<td style=\"text-align: center;\"><a href=\"https:\/\/github.com\/dotnet\/EntityFramework.Docs\/pull\/3157\">#1<\/a><\/td>\n<td style=\"text-align: center;\"><a href=\"https:\/\/github.com\/dotnet\/EntityFramework.Docs\/pull\/3225\">#1<\/a><\/td>\n<td style=\"text-align: center;\"><a href=\"https:\/\/github.com\/dotnet\/EntityFramework.Docs\/pull\/3143\">#1<\/a><\/td>\n<td style=\"text-align: center;\"><a href=\"https:\/\/github.com\/dotnet\/efcore\/pull\/23946\">#1<\/a>, <a href=\"https:\/\/github.com\/dotnet\/efcore\/pull\/23946\">#2<\/a><\/td>\n<\/tr>\n<tr>\n<td style=\"text-align: center;\"><\/td>\n<td style=\"text-align: center;\"><\/td>\n<td style=\"text-align: center;\"><\/td>\n<td style=\"text-align: center;\"><\/td>\n<\/tr>\n<tr>\n<td style=\"text-align: center;\"><strong><a href=\"https:\/\/github.com\/AlirezaRezaeeIR\">AlirezaRezaeeIR<\/a><\/strong><\/td>\n<td style=\"text-align: center;\"><strong><a href=\"https:\/\/github.com\/andrejs86\">andrejs86<\/a><\/strong><\/td>\n<td style=\"text-align: center;\"><strong><a href=\"https:\/\/github.com\/AndrewKitu\">AndrewKitu<\/a><\/strong><\/td>\n<td style=\"text-align: center;\"><strong><a href=\"https:\/\/github.com\/ardalis\">ardalis<\/a><\/strong><\/td>\n<\/tr>\n<tr>\n<td style=\"text-align: center;\"><a href=\"https:\/\/github.com\/dotnet\/EntityFramework.Docs\/pull\/3232\">#1<\/a><\/td>\n<td style=\"text-align: center;\"><a href=\"https:\/\/github.com\/dotnet\/EntityFramework.Docs\/pull\/3182\">#1<\/a><\/td>\n<td style=\"text-align: center;\"><a href=\"https:\/\/github.com\/dotnet\/EntityFramework.Docs\/pull\/3070\">#1<\/a><\/td>\n<td style=\"text-align: center;\"><a href=\"https:\/\/github.com\/dotnet\/EntityFramework.Docs\/pull\/3091\">#1<\/a><\/td>\n<\/tr>\n<tr>\n<td style=\"text-align: center;\"><\/td>\n<td style=\"text-align: center;\"><\/td>\n<td style=\"text-align: center;\"><\/td>\n<td style=\"text-align: center;\"><\/td>\n<\/tr>\n<tr>\n<td style=\"text-align: center;\"><strong><a href=\"https:\/\/github.com\/bartoszluka\">bartoszluka<\/a><\/strong><\/td>\n<td style=\"text-align: center;\"><strong><a href=\"https:\/\/github.com\/CaringDev\">CaringDev<\/a><\/strong><\/td>\n<td style=\"text-align: center;\"><strong><a href=\"https:\/\/github.com\/carlreid\">carlreid<\/a><\/strong><\/td>\n<td style=\"text-align: center;\"><strong><a href=\"https:\/\/github.com\/carlreinke\">carlreinke<\/a><\/strong><\/td>\n<\/tr>\n<tr>\n<td style=\"text-align: center;\"><a href=\"https:\/\/github.com\/dotnet\/EntityFramework.Docs\/pull\/3317\">#1<\/a><\/td>\n<td style=\"text-align: center;\"><a href=\"https:\/\/github.com\/dotnet\/efcore\/pull\/23585\">#1<\/a>, <a href=\"https:\/\/github.com\/dotnet\/efcore\/pull\/23585\">#2<\/a><\/td>\n<td style=\"text-align: center;\"><a href=\"https:\/\/github.com\/dotnet\/efcore\/pull\/24498\">#1<\/a>, <a href=\"https:\/\/github.com\/dotnet\/efcore\/pull\/24498\">#2<\/a><\/td>\n<td style=\"text-align: center;\"><a href=\"https:\/\/github.com\/dotnet\/efcore\/pull\/23694\">#1<\/a>, <a href=\"https:\/\/github.com\/dotnet\/efcore\/pull\/23694\">#2<\/a><\/td>\n<\/tr>\n<tr>\n<td style=\"text-align: center;\"><\/td>\n<td style=\"text-align: center;\"><\/td>\n<td style=\"text-align: center;\"><\/td>\n<td style=\"text-align: center;\"><\/td>\n<\/tr>\n<tr>\n<td style=\"text-align: center;\"><strong><a href=\"https:\/\/github.com\/cgrevil\">cgrevil<\/a><\/strong><\/td>\n<td style=\"text-align: center;\"><strong><a href=\"https:\/\/github.com\/cgrimes01\">cgrimes01<\/a><\/strong><\/td>\n<td style=\"text-align: center;\"><strong><a href=\"https:\/\/github.com\/cincuranet\">cincuranet<\/a><\/strong><\/td>\n<td style=\"text-align: center;\"><strong><a href=\"https:\/\/github.com\/cuperman007\">cuperman007<\/a><\/strong><\/td>\n<\/tr>\n<tr>\n<td style=\"text-align: center;\"><a href=\"https:\/\/github.com\/dotnet\/EntityFramework.Docs\/pull\/3154\">#1<\/a><\/td>\n<td style=\"text-align: center;\"><a href=\"https:\/\/github.com\/dotnet\/EntityFramework.Docs\/pull\/3038\">#1<\/a><\/td>\n<td style=\"text-align: center;\"><a href=\"https:\/\/github.com\/dotnet\/efcore\/pull\/24234\">#1<\/a>, <a href=\"https:\/\/github.com\/dotnet\/efcore\/pull\/24234\">#2<\/a>, <a href=\"https:\/\/github.com\/dotnet\/EntityFramework.Docs\/pull\/2714\">#3<\/a>, <a href=\"https:\/\/github.com\/dotnet\/EntityFramework.Docs\/pull\/3185\">#4<\/a><\/td>\n<td style=\"text-align: center;\"><a href=\"https:\/\/github.com\/dotnet\/EntityFramework.Docs\/pull\/2574\">#1<\/a><\/td>\n<\/tr>\n<tr>\n<td style=\"text-align: center;\"><\/td>\n<td style=\"text-align: center;\"><\/td>\n<td style=\"text-align: center;\"><\/td>\n<td style=\"text-align: center;\"><\/td>\n<\/tr>\n<tr>\n<td style=\"text-align: center;\"><strong><a href=\"https:\/\/github.com\/dan-giddins\">dan-giddins<\/a><\/strong><\/td>\n<td style=\"text-align: center;\"><strong><a href=\"https:\/\/github.com\/dannyjacosta\">dannyjacosta<\/a><\/strong><\/td>\n<td style=\"text-align: center;\"><strong><a href=\"https:\/\/github.com\/dennisseders\">dennisseders<\/a><\/strong><\/td>\n<td style=\"text-align: center;\"><strong><a href=\"https:\/\/github.com\/DickBaker\">DickBaker<\/a><\/strong><\/td>\n<\/tr>\n<tr>\n<td style=\"text-align: center;\"><a href=\"https:\/\/github.com\/dotnet\/EntityFramework.Docs\/pull\/2910\">#1<\/a><\/td>\n<td style=\"text-align: center;\"><a href=\"https:\/\/github.com\/dotnet\/efcore\/pull\/24839\">#1<\/a>, <a href=\"https:\/\/github.com\/dotnet\/efcore\/pull\/24839\">#2<\/a><\/td>\n<td style=\"text-align: center;\"><a href=\"https:\/\/github.com\/dotnet\/EntityFramework.Docs\/pull\/2839\">#1<\/a>, <a href=\"https:\/\/github.com\/dotnet\/EntityFramework.Docs\/pull\/2845\">#2<\/a>, <a href=\"https:\/\/github.com\/dotnet\/EntityFramework.Docs\/pull\/2848\">#3<\/a>, <a href=\"https:\/\/github.com\/dotnet\/EntityFramework.Docs\/pull\/2987\">#4<\/a>, <a href=\"https:\/\/github.com\/dotnet\/EntityFramework.Docs\/pull\/2997\">#5<\/a>, <a href=\"https:\/\/github.com\/dotnet\/EntityFramework.Docs\/pull\/3007\">#6<\/a><\/td>\n<td style=\"text-align: center;\"><a href=\"https:\/\/github.com\/dotnet\/EntityFramework.Docs\/pull\/2990\">#1<\/a><\/td>\n<\/tr>\n<tr>\n<td style=\"text-align: center;\"><\/td>\n<td style=\"text-align: center;\"><\/td>\n<td style=\"text-align: center;\"><\/td>\n<td style=\"text-align: center;\"><\/td>\n<\/tr>\n<tr>\n<td style=\"text-align: center;\"><strong><a href=\"https:\/\/github.com\/ErikEJ\">ErikEJ<\/a><\/strong><\/td>\n<td style=\"text-align: center;\"><strong><a href=\"https:\/\/github.com\/fagnercarvalho\">fagnercarvalho<\/a><\/strong><\/td>\n<td style=\"text-align: center;\"><strong><a href=\"https:\/\/github.com\/FarshanAhamed\">FarshanAhamed<\/a><\/strong><\/td>\n<td style=\"text-align: center;\"><strong><a href=\"https:\/\/github.com\/filipnavara\">filipnavara<\/a><\/strong><\/td>\n<\/tr>\n<tr>\n<td style=\"text-align: center;\"><a href=\"https:\/\/github.com\/dotnet\/efcore\/pull\/22900\">#1<\/a>, <a href=\"https:\/\/github.com\/dotnet\/efcore\/pull\/22900\">#2<\/a>, <a href=\"https:\/\/github.com\/dotnet\/efcore\/pull\/22937\">#3<\/a>, <a href=\"https:\/\/github.com\/dotnet\/efcore\/pull\/22937\">#4<\/a>, <a href=\"https:\/\/github.com\/dotnet\/efcore\/pull\/22938\">#5<\/a>, <a href=\"https:\/\/github.com\/dotnet\/efcore\/pull\/22938\">#6<\/a>, <a href=\"https:\/\/github.com\/dotnet\/efcore\/pull\/24937\">#7<\/a>, <a href=\"https:\/\/github.com\/dotnet\/efcore\/pull\/24937\">#8<\/a>, <a href=\"https:\/\/github.com\/dotnet\/EntityFramework.Docs\/pull\/2897\">#9<\/a>, <a href=\"https:\/\/github.com\/dotnet\/EntityFramework.Docs\/pull\/2984\">#10<\/a>, <a href=\"https:\/\/github.com\/dotnet\/EntityFramework.Docs\/pull\/3187\">#11<\/a>, <a href=\"https:\/\/github.com\/dotnet\/EntityFramework.Docs\/pull\/3197\">#12<\/a>, <a href=\"https:\/\/github.com\/dotnet\/EntityFramework.Docs\/pull\/3230\">#13<\/a>, <a href=\"https:\/\/github.com\/dotnet\/EntityFramework.Docs\/pull\/3257\">#14<\/a>, <a href=\"https:\/\/github.com\/dotnet\/EntityFramework.Docs\/pull\/3303\">#15<\/a>, <a href=\"https:\/\/github.com\/dotnet\/EntityFramework.Docs\/pull\/3312\">#16<\/a><\/td>\n<td style=\"text-align: center;\"><a href=\"https:\/\/github.com\/dotnet\/efcore\/pull\/23094\">#1<\/a>, <a href=\"https:\/\/github.com\/dotnet\/efcore\/pull\/23094\">#2<\/a><\/td>\n<td style=\"text-align: center;\"><a href=\"https:\/\/github.com\/dotnet\/EntityFramework.Docs\/pull\/3181\">#1<\/a><\/td>\n<td style=\"text-align: center;\"><a href=\"https:\/\/github.com\/dotnet\/efcore\/pull\/23591\">#1<\/a>, <a href=\"https:\/\/github.com\/dotnet\/efcore\/pull\/23591\">#2<\/a><\/td>\n<\/tr>\n<tr>\n<td style=\"text-align: center;\"><\/td>\n<td style=\"text-align: center;\"><\/td>\n<td style=\"text-align: center;\"><\/td>\n<td style=\"text-align: center;\"><\/td>\n<\/tr>\n<tr>\n<td style=\"text-align: center;\"><strong><a href=\"https:\/\/github.com\/garyng\">garyng<\/a><\/strong><\/td>\n<td style=\"text-align: center;\"><strong><a href=\"https:\/\/github.com\/Geoff1900\">Geoff1900<\/a><\/strong><\/td>\n<td style=\"text-align: center;\"><strong><a href=\"https:\/\/github.com\/gfoidl\">gfoidl<\/a><\/strong><\/td>\n<td style=\"text-align: center;\"><strong><a href=\"https:\/\/github.com\/gieseanw\">gieseanw<\/a><\/strong><\/td>\n<\/tr>\n<tr>\n<td style=\"text-align: center;\"><a href=\"https:\/\/github.com\/dotnet\/EntityFramework.Docs\/pull\/3045\">#1<\/a>, <a href=\"https:\/\/github.com\/dotnet\/EntityFramework.Docs\/pull\/3046\">#2<\/a>, <a href=\"https:\/\/github.com\/dotnet\/EntityFramework.Docs\/pull\/3047\">#3<\/a><\/td>\n<td style=\"text-align: center;\"><a href=\"https:\/\/github.com\/dotnet\/EntityFramework.Docs\/pull\/3025\">#1<\/a><\/td>\n<td style=\"text-align: center;\"><a href=\"https:\/\/github.com\/dotnet\/efcore\/pull\/22923\">#1<\/a>, <a href=\"https:\/\/github.com\/dotnet\/efcore\/pull\/22923\">#2<\/a><\/td>\n<td style=\"text-align: center;\"><a href=\"https:\/\/github.com\/dotnet\/EntityFramework.Docs\/pull\/3262\">#1<\/a><\/td>\n<\/tr>\n<tr>\n<td style=\"text-align: center;\"><\/td>\n<td style=\"text-align: center;\"><\/td>\n<td style=\"text-align: center;\"><\/td>\n<td style=\"text-align: center;\"><\/td>\n<\/tr>\n<tr>\n<td style=\"text-align: center;\"><strong><a href=\"https:\/\/github.com\/Giorgi\">Giorgi<\/a><\/strong><\/td>\n<td style=\"text-align: center;\"><strong><a href=\"https:\/\/github.com\/GitHubPang\">GitHubPang<\/a><\/strong><\/td>\n<td style=\"text-align: center;\"><strong><a href=\"https:\/\/github.com\/gurustron\">gurustron<\/a><\/strong><\/td>\n<td style=\"text-align: center;\"><strong><a href=\"https:\/\/github.com\/hez2010\">hez2010<\/a><\/strong><\/td>\n<\/tr>\n<tr>\n<td style=\"text-align: center;\"><a href=\"https:\/\/github.com\/dotnet\/efcore\/pull\/24147\">#1<\/a>, <a href=\"https:\/\/github.com\/dotnet\/efcore\/pull\/24147\">#2<\/a>, <a href=\"https:\/\/github.com\/dotnet\/EntityFramework.Docs\/pull\/3106\">#3<\/a>, <a href=\"https:\/\/github.com\/dotnet\/EntityFramework.Docs\/pull\/3107\">#4<\/a><\/td>\n<td style=\"text-align: center;\"><a href=\"https:\/\/github.com\/dotnet\/EntityFramework.Docs\/pull\/3097\">#1<\/a>, <a href=\"https:\/\/github.com\/dotnet\/EntityFramework.Docs\/pull\/3315\">#2<\/a><\/td>\n<td style=\"text-align: center;\"><a href=\"https:\/\/github.com\/dotnet\/EntityFramework.Docs\/pull\/3010\">#1<\/a><\/td>\n<td style=\"text-align: center;\"><a href=\"https:\/\/github.com\/dotnet\/efcore\/pull\/24211\">#1<\/a>, <a href=\"https:\/\/github.com\/dotnet\/efcore\/pull\/24211\">#2<\/a><\/td>\n<\/tr>\n<tr>\n<td style=\"text-align: center;\"><\/td>\n<td style=\"text-align: center;\"><\/td>\n<td style=\"text-align: center;\"><\/td>\n<td style=\"text-align: center;\"><\/td>\n<\/tr>\n<tr>\n<td style=\"text-align: center;\"><strong><a href=\"https:\/\/github.com\/HSchwichtenberg\">HSchwichtenberg<\/a><\/strong><\/td>\n<td style=\"text-align: center;\"><strong><a href=\"https:\/\/github.com\/jaliyaudagedara\">jaliyaudagedara<\/a><\/strong><\/td>\n<td style=\"text-align: center;\"><strong><a href=\"https:\/\/github.com\/jantlee\">jantlee<\/a><\/strong><\/td>\n<td style=\"text-align: center;\"><strong><a href=\"https:\/\/github.com\/jeremycook\">jeremycook<\/a><\/strong><\/td>\n<\/tr>\n<tr>\n<td style=\"text-align: center;\"><a href=\"https:\/\/github.com\/dotnet\/EntityFramework.Docs\/pull\/2894\">#1<\/a>, <a href=\"https:\/\/github.com\/dotnet\/EntityFramework.Docs\/pull\/3256\">#2<\/a><\/td>\n<td style=\"text-align: center;\"><a href=\"https:\/\/github.com\/dotnet\/efcore\/pull\/24499\">#1<\/a>, <a href=\"https:\/\/github.com\/dotnet\/efcore\/pull\/24499\">#2<\/a><\/td>\n<td style=\"text-align: center;\"><a href=\"https:\/\/github.com\/dotnet\/EntityFramework.Docs\/pull\/2786\">#1<\/a><\/td>\n<td style=\"text-align: center;\"><a href=\"https:\/\/github.com\/dotnet\/EntityFramework.Docs\/pull\/2827\">#1<\/a><\/td>\n<\/tr>\n<tr>\n<td style=\"text-align: center;\"><\/td>\n<td style=\"text-align: center;\"><\/td>\n<td style=\"text-align: center;\"><\/td>\n<td style=\"text-align: center;\"><\/td>\n<\/tr>\n<tr>\n<td style=\"text-align: center;\"><strong><a href=\"https:\/\/github.com\/jing8956\">jing8956<\/a><\/strong><\/td>\n<td style=\"text-align: center;\"><strong><a href=\"https:\/\/github.com\/joakimriedel\">joakimriedel<\/a><\/strong><\/td>\n<td style=\"text-align: center;\"><strong><a href=\"https:\/\/github.com\/joaopgrassi\">joaopgrassi<\/a><\/strong><\/td>\n<td style=\"text-align: center;\"><strong><a href=\"https:\/\/github.com\/joelmandell\">joelmandell<\/a><\/strong><\/td>\n<\/tr>\n<tr>\n<td style=\"text-align: center;\"><a href=\"https:\/\/github.com\/dotnet\/EntityFramework.Docs\/pull\/3146\">#1<\/a><\/td>\n<td style=\"text-align: center;\"><a href=\"https:\/\/github.com\/dotnet\/efcore\/pull\/23437\">#1<\/a>, <a href=\"https:\/\/github.com\/dotnet\/efcore\/pull\/23437\">#2<\/a>, <a href=\"https:\/\/github.com\/dotnet\/EntityFramework.Docs\/pull\/3321\">#3<\/a><\/td>\n<td style=\"text-align: center;\"><a href=\"https:\/\/github.com\/dotnet\/efcore\/pull\/22849\">#1<\/a>, <a href=\"https:\/\/github.com\/dotnet\/efcore\/pull\/22849\">#2<\/a><\/td>\n<td style=\"text-align: center;\"><a href=\"https:\/\/github.com\/dotnet\/EntityFramework.Docs\/pull\/3305\">#1<\/a><\/td>\n<\/tr>\n<tr>\n<td style=\"text-align: center;\"><\/td>\n<td style=\"text-align: center;\"><\/td>\n<td style=\"text-align: center;\"><\/td>\n<td style=\"text-align: center;\"><\/td>\n<\/tr>\n<tr>\n<td style=\"text-align: center;\"><strong><a href=\"https:\/\/github.com\/JohnMHigginsPMC\">JohnMHigginsPMC<\/a><\/strong><\/td>\n<td style=\"text-align: center;\"><strong><a href=\"https:\/\/github.com\/JonasSamuelsson\">JonasSamuelsson<\/a><\/strong><\/td>\n<td style=\"text-align: center;\"><strong><a href=\"https:\/\/github.com\/josemiltonsampaio\">josemiltonsampaio<\/a><\/strong><\/td>\n<td style=\"text-align: center;\"><strong><a href=\"https:\/\/github.com\/KaloyanIT\">KaloyanIT<\/a><\/strong><\/td>\n<\/tr>\n<tr>\n<td style=\"text-align: center;\"><a href=\"https:\/\/github.com\/dotnet\/EntityFramework.Docs\/pull\/3313\">#1<\/a><\/td>\n<td style=\"text-align: center;\"><a href=\"https:\/\/github.com\/dotnet\/EntityFramework.Docs\/pull\/3309\">#1<\/a><\/td>\n<td style=\"text-align: center;\"><a href=\"https:\/\/github.com\/dotnet\/EntityFramework.Docs\/pull\/2927\">#1<\/a><\/td>\n<td style=\"text-align: center;\"><a href=\"https:\/\/github.com\/dotnet\/efcore\/pull\/23563\">#1<\/a>, <a href=\"https:\/\/github.com\/dotnet\/efcore\/pull\/23563\">#2<\/a>, <a href=\"https:\/\/github.com\/dotnet\/efcore\/pull\/23666\">#3<\/a>, <a href=\"https:\/\/github.com\/dotnet\/efcore\/pull\/23666\">#4<\/a><\/td>\n<\/tr>\n<tr>\n<td style=\"text-align: center;\"><\/td>\n<td style=\"text-align: center;\"><\/td>\n<td style=\"text-align: center;\"><\/td>\n<td style=\"text-align: center;\"><\/td>\n<\/tr>\n<tr>\n<td style=\"text-align: center;\"><strong><a href=\"https:\/\/github.com\/khalidabuhakmeh\">khalidabuhakmeh<\/a><\/strong><\/td>\n<td style=\"text-align: center;\"><strong><a href=\"https:\/\/github.com\/khellang\">khellang<\/a><\/strong><\/td>\n<td style=\"text-align: center;\"><strong><a href=\"https:\/\/github.com\/koenbeuk\">koenbeuk<\/a><\/strong><\/td>\n<td style=\"text-align: center;\"><strong><a href=\"https:\/\/github.com\/kotpal\">kotpal<\/a><\/strong><\/td>\n<\/tr>\n<tr>\n<td style=\"text-align: center;\"><a href=\"https:\/\/github.com\/dotnet\/EntityFramework.Docs\/pull\/2858\">#1<\/a>, <a href=\"https:\/\/github.com\/dotnet\/EntityFramework.Docs\/pull\/2962\">#2<\/a><\/td>\n<td style=\"text-align: center;\"><a href=\"https:\/\/github.com\/dotnet\/EntityFramework.Docs\/pull\/2982\">#1<\/a><\/td>\n<td style=\"text-align: center;\"><a href=\"https:\/\/github.com\/dotnet\/EntityFramework.Docs\/pull\/2921\">#1<\/a>, <a href=\"https:\/\/github.com\/dotnet\/EntityFramework.Docs\/pull\/3283\">#2<\/a><\/td>\n<td style=\"text-align: center;\"><a href=\"https:\/\/github.com\/dotnet\/EntityFramework.Docs\/pull\/2763\">#1<\/a><\/td>\n<\/tr>\n<tr>\n<td style=\"text-align: center;\"><\/td>\n<td style=\"text-align: center;\"><\/td>\n<td style=\"text-align: center;\"><\/td>\n<td style=\"text-align: center;\"><\/td>\n<\/tr>\n<tr>\n<td style=\"text-align: center;\"><strong><a href=\"https:\/\/github.com\/larsholm\">larsholm<\/a><\/strong><\/td>\n<td style=\"text-align: center;\"><strong><a href=\"https:\/\/github.com\/lauxjpn\">lauxjpn<\/a><\/strong><\/td>\n<td style=\"text-align: center;\"><strong><a href=\"https:\/\/github.com\/leonardoporro\">leonardoporro<\/a><\/strong><\/td>\n<td style=\"text-align: center;\"><strong><a href=\"https:\/\/github.com\/lexkazakov\">lexkazakov<\/a><\/strong><\/td>\n<\/tr>\n<tr>\n<td style=\"text-align: center;\"><a href=\"https:\/\/github.com\/dotnet\/efcore\/pull\/24624\">#1<\/a>, <a href=\"https:\/\/github.com\/dotnet\/efcore\/pull\/24624\">#2<\/a><\/td>\n<td style=\"text-align: center;\"><a href=\"https:\/\/github.com\/dotnet\/efcore\/pull\/24806\">#1<\/a>, <a href=\"https:\/\/github.com\/dotnet\/efcore\/pull\/24806\">#2<\/a>, <a href=\"https:\/\/github.com\/dotnet\/efcore\/pull\/24819\">#3<\/a>, <a href=\"https:\/\/github.com\/dotnet\/efcore\/pull\/24819\">#4<\/a>, <a href=\"https:\/\/github.com\/dotnet\/efcore\/pull\/25128\">#5<\/a>, <a href=\"https:\/\/github.com\/dotnet\/efcore\/pull\/25128\">#6<\/a><\/td>\n<td style=\"text-align: center;\"><a href=\"https:\/\/github.com\/dotnet\/EntityFramework.Docs\/pull\/2883\">#1<\/a><\/td>\n<td style=\"text-align: center;\"><a href=\"https:\/\/github.com\/dotnet\/EntityFramework.Docs\/pull\/3191\">#1<\/a><\/td>\n<\/tr>\n<tr>\n<td style=\"text-align: center;\"><\/td>\n<td style=\"text-align: center;\"><\/td>\n<td style=\"text-align: center;\"><\/td>\n<td style=\"text-align: center;\"><\/td>\n<\/tr>\n<tr>\n<td style=\"text-align: center;\"><strong><a href=\"https:\/\/github.com\/mariuz\">mariuz<\/a><\/strong><\/td>\n<td style=\"text-align: center;\"><strong><a href=\"https:\/\/github.com\/marodev\">marodev<\/a><\/strong><\/td>\n<td style=\"text-align: center;\"><strong><a href=\"https:\/\/github.com\/martincostello\">martincostello<\/a><\/strong><\/td>\n<td style=\"text-align: center;\"><strong><a href=\"https:\/\/github.com\/MartinWestminster\">MartinWestminster<\/a><\/strong><\/td>\n<\/tr>\n<tr>\n<td style=\"text-align: center;\"><a href=\"https:\/\/github.com\/dotnet\/EntityFramework.Docs\/pull\/3124\">#1<\/a><\/td>\n<td style=\"text-align: center;\"><a href=\"https:\/\/github.com\/dotnet\/efcore\/pull\/24951\">#1<\/a>, <a href=\"https:\/\/github.com\/dotnet\/efcore\/pull\/24951\">#2<\/a><\/td>\n<td style=\"text-align: center;\"><a href=\"https:\/\/github.com\/dotnet\/efcore\/pull\/25021\">#1<\/a>, <a href=\"https:\/\/github.com\/dotnet\/efcore\/pull\/25021\">#2<\/a>, <a href=\"https:\/\/github.com\/dotnet\/efcore\/pull\/25041\">#3<\/a>, <a href=\"https:\/\/github.com\/dotnet\/efcore\/pull\/25041\">#4<\/a><\/td>\n<td style=\"text-align: center;\"><a href=\"https:\/\/github.com\/dotnet\/EntityFramework.Docs\/pull\/3118\">#1<\/a><\/td>\n<\/tr>\n<tr>\n<td style=\"text-align: center;\"><\/td>\n<td style=\"text-align: center;\"><\/td>\n<td style=\"text-align: center;\"><\/td>\n<td style=\"text-align: center;\"><\/td>\n<\/tr>\n<tr>\n<td style=\"text-align: center;\"><strong><a href=\"https:\/\/github.com\/Marusyk\">Marusyk<\/a><\/strong><\/td>\n<td style=\"text-align: center;\"><strong><a href=\"https:\/\/github.com\/massytech\">massytech<\/a><\/strong><\/td>\n<td style=\"text-align: center;\"><strong><a href=\"https:\/\/github.com\/MattKomorcec\">MattKomorcec<\/a><\/strong><\/td>\n<td style=\"text-align: center;\"><strong><a href=\"https:\/\/github.com\/MaxG117\">MaxG117<\/a><\/strong><\/td>\n<\/tr>\n<tr>\n<td style=\"text-align: center;\"><a href=\"https:\/\/github.com\/dotnet\/efcore\/pull\/23039\">#1<\/a>, <a href=\"https:\/\/github.com\/dotnet\/efcore\/pull\/23039\">#2<\/a>, <a href=\"https:\/\/github.com\/dotnet\/efcore\/pull\/24016\">#3<\/a>, <a href=\"https:\/\/github.com\/dotnet\/efcore\/pull\/24016\">#4<\/a>, <a href=\"https:\/\/github.com\/dotnet\/efcore\/pull\/24203\">#5<\/a>, <a href=\"https:\/\/github.com\/dotnet\/efcore\/pull\/24203\">#6<\/a>, <a href=\"https:\/\/github.com\/dotnet\/efcore\/pull\/24204\">#7<\/a>, <a href=\"https:\/\/github.com\/dotnet\/efcore\/pull\/24204\">#8<\/a>, <a href=\"https:\/\/github.com\/dotnet\/efcore\/pull\/24247\">#9<\/a>, <a href=\"https:\/\/github.com\/dotnet\/efcore\/pull\/24247\">#10<\/a>, <a href=\"https:\/\/github.com\/dotnet\/efcore\/pull\/24284\">#11<\/a>, <a href=\"https:\/\/github.com\/dotnet\/efcore\/pull\/24284\">#12<\/a>, <a href=\"https:\/\/github.com\/dotnet\/efcore\/pull\/24286\">#13<\/a>, <a href=\"https:\/\/github.com\/dotnet\/efcore\/pull\/24286\">#14<\/a>, <a href=\"https:\/\/github.com\/dotnet\/efcore\/pull\/24323\">#15<\/a>, <a href=\"https:\/\/github.com\/dotnet\/efcore\/pull\/24323\">#16<\/a>, <a href=\"https:\/\/github.com\/dotnet\/efcore\/pull\/24463\">#17<\/a>, <a href=\"https:\/\/github.com\/dotnet\/efcore\/pull\/24463\">#18<\/a><\/td>\n<td style=\"text-align: center;\"><a href=\"https:\/\/github.com\/dotnet\/EntityFramework.Docs\/pull\/2490\">#1<\/a><\/td>\n<td style=\"text-align: center;\"><a href=\"https:\/\/github.com\/dotnet\/efcore\/pull\/24728\">#1<\/a>, <a href=\"https:\/\/github.com\/dotnet\/efcore\/pull\/24728\">#2<\/a><\/td>\n<td style=\"text-align: center;\"><a href=\"https:\/\/github.com\/dotnet\/EntityFramework.Docs\/pull\/2898\">#1<\/a><\/td>\n<\/tr>\n<tr>\n<td style=\"text-align: center;\"><\/td>\n<td style=\"text-align: center;\"><\/td>\n<td style=\"text-align: center;\"><\/td>\n<td style=\"text-align: center;\"><\/td>\n<\/tr>\n<tr>\n<td style=\"text-align: center;\"><strong><a href=\"https:\/\/github.com\/mefateah\">mefateah<\/a><\/strong><\/td>\n<td style=\"text-align: center;\"><strong><a href=\"https:\/\/github.com\/meggima\">meggima<\/a><\/strong><\/td>\n<td style=\"text-align: center;\"><strong><a href=\"https:\/\/github.com\/mguinness\">mguinness<\/a><\/strong><\/td>\n<td style=\"text-align: center;\"><strong><a href=\"https:\/\/github.com\/michalczerwinski\">michalczerwinski<\/a><\/strong><\/td>\n<\/tr>\n<tr>\n<td style=\"text-align: center;\"><a href=\"https:\/\/github.com\/dotnet\/EntityFramework.Docs\/pull\/3065\">#1<\/a><\/td>\n<td style=\"text-align: center;\"><a href=\"https:\/\/github.com\/dotnet\/efcore\/pull\/23605\">#1<\/a>, <a href=\"https:\/\/github.com\/dotnet\/efcore\/pull\/23605\">#2<\/a><\/td>\n<td style=\"text-align: center;\"><a href=\"https:\/\/github.com\/dotnet\/EntityFramework.Docs\/pull\/3227\">#1<\/a><\/td>\n<td style=\"text-align: center;\"><a href=\"https:\/\/github.com\/dotnet\/efcore\/pull\/24793\">#1<\/a>, <a href=\"https:\/\/github.com\/dotnet\/efcore\/pull\/24793\">#2<\/a>, <a href=\"https:\/\/github.com\/dotnet\/efcore\/pull\/24814\">#3<\/a>, <a href=\"https:\/\/github.com\/dotnet\/efcore\/pull\/24814\">#4<\/a>, <a href=\"https:\/\/github.com\/dotnet\/efcore\/pull\/24887\">#5<\/a>, <a href=\"https:\/\/github.com\/dotnet\/efcore\/pull\/24887\">#6<\/a><\/td>\n<\/tr>\n<tr>\n<td style=\"text-align: center;\"><\/td>\n<td style=\"text-align: center;\"><\/td>\n<td style=\"text-align: center;\"><\/td>\n<td style=\"text-align: center;\"><\/td>\n<\/tr>\n<tr>\n<td style=\"text-align: center;\"><strong><a href=\"https:\/\/github.com\/mrlife\">mrlife<\/a><\/strong><\/td>\n<td style=\"text-align: center;\"><strong><a href=\"https:\/\/github.com\/msawczyn\">msawczyn<\/a><\/strong><\/td>\n<td style=\"text-align: center;\"><strong><a href=\"https:\/\/github.com\/MSDN-WhiteKnight\">MSDN-WhiteKnight<\/a><\/strong><\/td>\n<td style=\"text-align: center;\"><strong><a href=\"https:\/\/github.com\/natashanikolic\">natashanikolic<\/a><\/strong><\/td>\n<\/tr>\n<tr>\n<td style=\"text-align: center;\"><a href=\"https:\/\/github.com\/dotnet\/EntityFramework.Docs\/pull\/3094\">#1<\/a>, <a href=\"https:\/\/github.com\/dotnet\/EntityFramework.Docs\/pull\/3128\">#2<\/a>, <a href=\"https:\/\/github.com\/dotnet\/EntityFramework.Docs\/pull\/3129\">#3<\/a>, <a href=\"https:\/\/github.com\/dotnet\/EntityFramework.Docs\/pull\/3132\">#4<\/a><\/td>\n<td style=\"text-align: center;\"><a href=\"https:\/\/github.com\/dotnet\/EntityFramework.Docs\/pull\/2917\">#1<\/a><\/td>\n<td style=\"text-align: center;\"><a href=\"https:\/\/github.com\/dotnet\/EntityFramework.Docs\/pull\/2887\">#1<\/a><\/td>\n<td style=\"text-align: center;\"><a href=\"https:\/\/github.com\/dotnet\/EntityFramework.Docs\/pull\/2920\">#1<\/a><\/td>\n<\/tr>\n<tr>\n<td style=\"text-align: center;\"><\/td>\n<td style=\"text-align: center;\"><\/td>\n<td style=\"text-align: center;\"><\/td>\n<td style=\"text-align: center;\"><\/td>\n<\/tr>\n<tr>\n<td style=\"text-align: center;\"><strong><a href=\"https:\/\/github.com\/nmichels\">nmichels<\/a><\/strong><\/td>\n<td style=\"text-align: center;\"><strong><a href=\"https:\/\/github.com\/nschonni\">nschonni<\/a><\/strong><\/td>\n<td style=\"text-align: center;\"><strong><a href=\"https:\/\/github.com\/ntovas\">ntovas<\/a><\/strong><\/td>\n<td style=\"text-align: center;\"><strong><a href=\"https:\/\/github.com\/OKTAYKIR\">OKTAYKIR<\/a><\/strong><\/td>\n<\/tr>\n<tr>\n<td style=\"text-align: center;\"><a href=\"https:\/\/github.com\/dotnet\/efcore\/pull\/23091\">#1<\/a>, <a href=\"https:\/\/github.com\/dotnet\/efcore\/pull\/23091\">#2<\/a><\/td>\n<td style=\"text-align: center;\"><a href=\"https:\/\/github.com\/dotnet\/EntityFramework.Docs\/pull\/2775\">#1<\/a>, <a href=\"https:\/\/github.com\/dotnet\/EntityFramework.Docs\/pull\/2776\">#2<\/a>, <a href=\"https:\/\/github.com\/dotnet\/EntityFramework.Docs\/pull\/2779\">#3<\/a>, <a href=\"https:\/\/github.com\/dotnet\/EntityFramework.Docs\/pull\/2780\">#4<\/a><\/td>\n<td style=\"text-align: center;\"><a href=\"https:\/\/github.com\/dotnet\/efcore\/pull\/24829\">#1<\/a>, <a href=\"https:\/\/github.com\/dotnet\/efcore\/pull\/24829\">#2<\/a><\/td>\n<td style=\"text-align: center;\"><a href=\"https:\/\/github.com\/dotnet\/EntityFramework.Docs\/pull\/3145\">#1<\/a><\/td>\n<\/tr>\n<tr>\n<td style=\"text-align: center;\"><\/td>\n<td style=\"text-align: center;\"><\/td>\n<td style=\"text-align: center;\"><\/td>\n<td style=\"text-align: center;\"><\/td>\n<\/tr>\n<tr>\n<td style=\"text-align: center;\"><strong><a href=\"https:\/\/github.com\/OOberoi\">OOberoi<\/a><\/strong><\/td>\n<td style=\"text-align: center;\"><strong><a href=\"https:\/\/github.com\/Oxyrus\">Oxyrus<\/a><\/strong><\/td>\n<td style=\"text-align: center;\"><strong><a href=\"https:\/\/github.com\/pkellner\">pkellner<\/a><\/strong><\/td>\n<td style=\"text-align: center;\"><strong><a href=\"https:\/\/github.com\/ptupitsyn\">ptupitsyn<\/a><\/strong><\/td>\n<\/tr>\n<tr>\n<td style=\"text-align: center;\"><a href=\"https:\/\/github.com\/dotnet\/EntityFramework.Docs\/pull\/3163\">#1<\/a>, <a href=\"https:\/\/github.com\/dotnet\/EntityFramework.Docs\/pull\/3319\">#2<\/a><\/td>\n<td style=\"text-align: center;\"><a href=\"https:\/\/github.com\/dotnet\/EntityFramework.Docs\/pull\/3110\">#1<\/a><\/td>\n<td style=\"text-align: center;\"><a href=\"https:\/\/github.com\/dotnet\/EntityFramework.Docs\/pull\/2954\">#1<\/a><\/td>\n<td style=\"text-align: center;\"><a href=\"https:\/\/github.com\/dotnet\/EntityFramework.Docs\/pull\/3202\">#1<\/a><\/td>\n<\/tr>\n<tr>\n<td style=\"text-align: center;\"><\/td>\n<td style=\"text-align: center;\"><\/td>\n<td style=\"text-align: center;\"><\/td>\n<td style=\"text-align: center;\"><\/td>\n<\/tr>\n<tr>\n<td style=\"text-align: center;\"><strong><a href=\"https:\/\/github.com\/ralmsdeveloper\">ralmsdeveloper<\/a><\/strong><\/td>\n<td style=\"text-align: center;\"><strong><a href=\"https:\/\/github.com\/RaymondHuy\">RaymondHuy<\/a><\/strong><\/td>\n<td style=\"text-align: center;\"><strong><a href=\"https:\/\/github.com\/riscie\">riscie<\/a><\/strong><\/td>\n<td style=\"text-align: center;\"><strong><a href=\"https:\/\/github.com\/seekingtheoptimal\">seekingtheoptimal<\/a><\/strong><\/td>\n<\/tr>\n<tr>\n<td style=\"text-align: center;\"><a href=\"https:\/\/github.com\/dotnet\/efcore\/pull\/19473\">#1<\/a>, <a href=\"https:\/\/github.com\/dotnet\/efcore\/pull\/19473\">#2<\/a><\/td>\n<td style=\"text-align: center;\"><a href=\"https:\/\/github.com\/dotnet\/efcore\/pull\/22514\">#1<\/a>, <a href=\"https:\/\/github.com\/dotnet\/efcore\/pull\/22514\">#2<\/a>, <a href=\"https:\/\/github.com\/dotnet\/efcore\/pull\/23145\">#3<\/a>, <a href=\"https:\/\/github.com\/dotnet\/efcore\/pull\/23145\">#4<\/a>, <a href=\"https:\/\/github.com\/dotnet\/efcore\/pull\/23232\">#5<\/a>, <a href=\"https:\/\/github.com\/dotnet\/efcore\/pull\/23232\">#6<\/a>, <a href=\"https:\/\/github.com\/dotnet\/efcore\/pull\/23424\">#7<\/a>, <a href=\"https:\/\/github.com\/dotnet\/efcore\/pull\/23424\">#8<\/a><\/td>\n<td style=\"text-align: center;\"><a href=\"https:\/\/github.com\/dotnet\/efcore\/pull\/20792\">#1<\/a>, <a href=\"https:\/\/github.com\/dotnet\/efcore\/pull\/20792\">#2<\/a><\/td>\n<td style=\"text-align: center;\"><a href=\"https:\/\/github.com\/dotnet\/EntityFramework.Docs\/pull\/2473\">#1<\/a><\/td>\n<\/tr>\n<tr>\n<td style=\"text-align: center;\"><\/td>\n<td style=\"text-align: center;\"><\/td>\n<td style=\"text-align: center;\"><\/td>\n<td style=\"text-align: center;\"><\/td>\n<\/tr>\n<tr>\n<td style=\"text-align: center;\"><strong><a href=\"https:\/\/github.com\/SergerGood\">SergerGood<\/a><\/strong><\/td>\n<td style=\"text-align: center;\"><strong><a href=\"https:\/\/github.com\/Shirasho\">Shirasho<\/a><\/strong><\/td>\n<td style=\"text-align: center;\"><strong><a href=\"https:\/\/github.com\/SimonCropp\">SimonCropp<\/a><\/strong><\/td>\n<td style=\"text-align: center;\"><strong><a href=\"https:\/\/github.com\/smagurauskas\">smagurauskas<\/a><\/strong><\/td>\n<\/tr>\n<tr>\n<td style=\"text-align: center;\"><a href=\"https:\/\/github.com\/dotnet\/efcore\/pull\/24750\">#1<\/a>, <a href=\"https:\/\/github.com\/dotnet\/efcore\/pull\/24750\">#2<\/a>, <a href=\"https:\/\/github.com\/dotnet\/efcore\/pull\/24751\">#3<\/a>, <a href=\"https:\/\/github.com\/dotnet\/efcore\/pull\/24751\">#4<\/a>, <a href=\"https:\/\/github.com\/dotnet\/efcore\/pull\/24752\">#5<\/a>, <a href=\"https:\/\/github.com\/dotnet\/efcore\/pull\/24752\">#6<\/a>, <a href=\"https:\/\/github.com\/dotnet\/efcore\/pull\/24753\">#7<\/a>, <a href=\"https:\/\/github.com\/dotnet\/efcore\/pull\/24753\">#8<\/a>, <a href=\"https:\/\/github.com\/dotnet\/efcore\/pull\/24755\">#9<\/a>, <a href=\"https:\/\/github.com\/dotnet\/efcore\/pull\/24755\">#10<\/a><\/td>\n<td style=\"text-align: center;\"><a href=\"https:\/\/github.com\/dotnet\/EntityFramework.Docs\/pull\/2988\">#1<\/a><\/td>\n<td style=\"text-align: center;\"><a href=\"https:\/\/github.com\/dotnet\/EntityFramework.Docs\/pull\/2957\">#1<\/a>, <a href=\"https:\/\/github.com\/dotnet\/EntityFramework.Docs\/pull\/2959\">#2<\/a><\/td>\n<td style=\"text-align: center;\"><a href=\"https:\/\/github.com\/dotnet\/efcore\/pull\/23933\">#1<\/a>, <a href=\"https:\/\/github.com\/dotnet\/efcore\/pull\/23933\">#2<\/a><\/td>\n<\/tr>\n<tr>\n<td style=\"text-align: center;\"><\/td>\n<td style=\"text-align: center;\"><\/td>\n<td style=\"text-align: center;\"><\/td>\n<td style=\"text-align: center;\"><\/td>\n<\/tr>\n<tr>\n<td style=\"text-align: center;\"><strong><a href=\"https:\/\/github.com\/stevendarby\">stevendarby<\/a><\/strong><\/td>\n<td style=\"text-align: center;\"><strong><a href=\"https:\/\/github.com\/Strepto\">Strepto<\/a><\/strong><\/td>\n<td style=\"text-align: center;\"><strong><a href=\"https:\/\/github.com\/taha-ghadirian\">taha-ghadirian<\/a><\/strong><\/td>\n<td style=\"text-align: center;\"><strong><a href=\"https:\/\/github.com\/teo-tsirpanis\">teo-tsirpanis<\/a><\/strong><\/td>\n<\/tr>\n<tr>\n<td style=\"text-align: center;\"><a href=\"https:\/\/github.com\/dotnet\/efcore\/pull\/24746\">#1<\/a>, <a href=\"https:\/\/github.com\/dotnet\/efcore\/pull\/24746\">#2<\/a><\/td>\n<td style=\"text-align: center;\"><a href=\"https:\/\/github.com\/dotnet\/efcore\/pull\/24141\">#1<\/a>, <a href=\"https:\/\/github.com\/dotnet\/efcore\/pull\/24141\">#2<\/a><\/td>\n<td style=\"text-align: center;\"><a href=\"https:\/\/github.com\/dotnet\/efcore\/pull\/25085\">#1<\/a>, <a href=\"https:\/\/github.com\/dotnet\/efcore\/pull\/25085\">#2<\/a><\/td>\n<td style=\"text-align: center;\"><a href=\"https:\/\/github.com\/dotnet\/EntityFramework.Docs\/pull\/3123\">#1<\/a>, <a href=\"https:\/\/github.com\/dotnet\/EntityFramework.Docs\/pull\/3268\">#2<\/a><\/td>\n<\/tr>\n<tr>\n<td style=\"text-align: center;\"><\/td>\n<td style=\"text-align: center;\"><\/td>\n<td style=\"text-align: center;\"><\/td>\n<td style=\"text-align: center;\"><\/td>\n<\/tr>\n<tr>\n<td style=\"text-align: center;\"><strong><a href=\"https:\/\/github.com\/the-wazz\">the-wazz<\/a><\/strong><\/td>\n<td style=\"text-align: center;\"><strong><a href=\"https:\/\/github.com\/thiggins1990\">thiggins1990<\/a><\/strong><\/td>\n<td style=\"text-align: center;\"><strong><a href=\"https:\/\/github.com\/tkp1n\">tkp1n<\/a><\/strong><\/td>\n<td style=\"text-align: center;\"><strong><a href=\"https:\/\/github.com\/umitkavala\">umitkavala<\/a><\/strong><\/td>\n<\/tr>\n<tr>\n<td style=\"text-align: center;\"><a href=\"https:\/\/github.com\/dotnet\/efcore\/pull\/23551\">#1<\/a>, <a href=\"https:\/\/github.com\/dotnet\/efcore\/pull\/23551\">#2<\/a><\/td>\n<td style=\"text-align: center;\"><a href=\"https:\/\/github.com\/dotnet\/EntityFramework.Docs\/pull\/3219\">#1<\/a><\/td>\n<td style=\"text-align: center;\"><a href=\"https:\/\/github.com\/dotnet\/efcore\/pull\/23014\">#1<\/a>, <a href=\"https:\/\/github.com\/dotnet\/efcore\/pull\/23014\">#2<\/a><\/td>\n<td style=\"text-align: center;\"><a href=\"https:\/\/github.com\/dotnet\/efcore\/pull\/23322\">#1<\/a>, <a href=\"https:\/\/github.com\/dotnet\/efcore\/pull\/23322\">#2<\/a>, <a href=\"https:\/\/github.com\/dotnet\/efcore\/pull\/23562\">#3<\/a>, <a href=\"https:\/\/github.com\/dotnet\/efcore\/pull\/23562\">#4<\/a>, <a href=\"https:\/\/github.com\/dotnet\/efcore\/pull\/24856\">#5<\/a>, <a href=\"https:\/\/github.com\/dotnet\/efcore\/pull\/24856\">#6<\/a><\/td>\n<\/tr>\n<tr>\n<td style=\"text-align: center;\"><\/td>\n<td style=\"text-align: center;\"><\/td>\n<td style=\"text-align: center;\"><\/td>\n<td style=\"text-align: center;\"><\/td>\n<\/tr>\n<tr>\n<td style=\"text-align: center;\"><strong><a href=\"https:\/\/github.com\/uncheckederror\">uncheckederror<\/a><\/strong><\/td>\n<td style=\"text-align: center;\"><strong><a href=\"https:\/\/github.com\/Varorbc\">Varorbc<\/a><\/strong><\/td>\n<td style=\"text-align: center;\"><strong><a href=\"https:\/\/github.com\/vincent1405\">vincent1405<\/a><\/strong><\/td>\n<td style=\"text-align: center;\"><strong><a href=\"https:\/\/github.com\/vonzshik\">vonzshik<\/a><\/strong><\/td>\n<\/tr>\n<tr>\n<td style=\"text-align: center;\"><a href=\"https:\/\/github.com\/dotnet\/EntityFramework.Docs\/pull\/3168\">#1<\/a><\/td>\n<td style=\"text-align: center;\"><a href=\"https:\/\/github.com\/dotnet\/EntityFramework.Docs\/pull\/3141\">#1<\/a><\/td>\n<td style=\"text-align: center;\"><a href=\"https:\/\/github.com\/dotnet\/efcore\/pull\/24020\">#1<\/a>, <a href=\"https:\/\/github.com\/dotnet\/efcore\/pull\/24020\">#2<\/a><\/td>\n<td style=\"text-align: center;\"><a href=\"https:\/\/github.com\/dotnet\/efcore\/pull\/24775\">#1<\/a>, <a href=\"https:\/\/github.com\/dotnet\/efcore\/pull\/24775\">#2<\/a>, <a href=\"https:\/\/github.com\/dotnet\/efcore\/pull\/24778\">#3<\/a>, <a href=\"https:\/\/github.com\/dotnet\/efcore\/pull\/24778\">#4<\/a>, <a href=\"https:\/\/github.com\/dotnet\/efcore\/pull\/24863\">#5<\/a>, <a href=\"https:\/\/github.com\/dotnet\/efcore\/pull\/24863\">#6<\/a><\/td>\n<\/tr>\n<tr>\n<td style=\"text-align: center;\"><\/td>\n<td style=\"text-align: center;\"><\/td>\n<td style=\"text-align: center;\"><\/td>\n<td style=\"text-align: center;\"><\/td>\n<\/tr>\n<tr>\n<td style=\"text-align: center;\"><strong><a href=\"https:\/\/github.com\/vytotas\">vytotas<\/a><\/strong><\/td>\n<td style=\"text-align: center;\"><strong><a href=\"https:\/\/github.com\/wdesgardin\">wdesgardin<\/a><\/strong><\/td>\n<td style=\"text-align: center;\"><strong><a href=\"https:\/\/github.com\/wmeints\">wmeints<\/a><\/strong><\/td>\n<td style=\"text-align: center;\"><strong><a href=\"https:\/\/github.com\/yesmey\">yesmey<\/a><\/strong><\/td>\n<\/tr>\n<tr>\n<td style=\"text-align: center;\"><a href=\"https:\/\/github.com\/dotnet\/EntityFramework.Docs\/pull\/3158\">#1<\/a><\/td>\n<td style=\"text-align: center;\"><a href=\"https:\/\/github.com\/dotnet\/efcore\/pull\/24588\">#1<\/a>, <a href=\"https:\/\/github.com\/dotnet\/efcore\/pull\/24588\">#2<\/a><\/td>\n<td style=\"text-align: center;\"><a href=\"https:\/\/github.com\/dotnet\/efcore\/pull\/23873\">#1<\/a>, <a href=\"https:\/\/github.com\/dotnet\/efcore\/pull\/23873\">#2<\/a><\/td>\n<td style=\"text-align: center;\"><a href=\"https:\/\/github.com\/dotnet\/efcore\/pull\/24111\">#1<\/a>, <a href=\"https:\/\/github.com\/dotnet\/efcore\/pull\/24111\">#2<\/a>, <a href=\"https:\/\/github.com\/dotnet\/efcore\/pull\/24155\">#3<\/a>, <a href=\"https:\/\/github.com\/dotnet\/efcore\/pull\/24155\">#4<\/a>, <a href=\"https:\/\/github.com\/dotnet\/efcore\/pull\/24160\">#5<\/a>, <a href=\"https:\/\/github.com\/dotnet\/efcore\/pull\/24160\">#6<\/a><\/td>\n<\/tr>\n<tr>\n<td style=\"text-align: center;\"><\/td>\n<td style=\"text-align: center;\"><\/td>\n<td style=\"text-align: center;\"><\/td>\n<td style=\"text-align: center;\"><\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n","protected":false},"excerpt":{"rendered":"<p>Learn about configure conventions and other new features that are available in EF Core 6.0 Preview 6.<\/p>\n","protected":false},"author":368,"featured_media":33181,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[685,196,197,859],"tags":[4,71],"class_list":["post-33560","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-dotnet","category-dotnet-core","category-aspnet","category-entity-framework","tag-net","tag-entity-framework-core"],"acf":[],"blog_post_summary":"<p>Learn about configure conventions and other new features that are available in EF Core 6.0 Preview 6.<\/p>\n","_links":{"self":[{"href":"https:\/\/devblogs.microsoft.com\/dotnet\/wp-json\/wp\/v2\/posts\/33560","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/devblogs.microsoft.com\/dotnet\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/devblogs.microsoft.com\/dotnet\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/devblogs.microsoft.com\/dotnet\/wp-json\/wp\/v2\/users\/368"}],"replies":[{"embeddable":true,"href":"https:\/\/devblogs.microsoft.com\/dotnet\/wp-json\/wp\/v2\/comments?post=33560"}],"version-history":[{"count":0,"href":"https:\/\/devblogs.microsoft.com\/dotnet\/wp-json\/wp\/v2\/posts\/33560\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/devblogs.microsoft.com\/dotnet\/wp-json\/wp\/v2\/media\/33181"}],"wp:attachment":[{"href":"https:\/\/devblogs.microsoft.com\/dotnet\/wp-json\/wp\/v2\/media?parent=33560"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/devblogs.microsoft.com\/dotnet\/wp-json\/wp\/v2\/categories?post=33560"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/devblogs.microsoft.com\/dotnet\/wp-json\/wp\/v2\/tags?post=33560"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}