Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Plan for Entity Framework Core 8 (EF8) #29853

Closed
ajcvickers opened this issue Dec 14, 2022 · 58 comments
Closed

Plan for Entity Framework Core 8 (EF8) #29853

ajcvickers opened this issue Dec 14, 2022 · 58 comments
Labels
closed-no-further-action The issue is closed and no further action is planned.
Milestone

Comments

@ajcvickers
Copy link
Member

ajcvickers commented Dec 14, 2022

Today we are excited to share with you the plan for Entity Framework Core 8. This issue contains a quick summary of the plan and acts as a place for you to leave feedback.

This plan brings together input from many stakeholders and outlines where and how we intend to invest in Entity Framework Core 8 (EF Core 8; EF8)

IMPORTANT
This plan is not a commitment; it will evolve as we continue to learn throughout the release. Some things not currently planned for EF8 may get pulled in. Some things currently planned for EF8 may get punted out.

General information

EF Core 8 is the next release after EF Core 7 and is scheduled to ship in November 2023, at the same time as .NET 8. EF8 currently targets .NET 6. This will likely be updated to .NET 8 as we near the release date. EF8 will align with .NET 8 as a long-term support (LTS) release. See the .NET support policy for more information.

Themes

Large investments for EF8 and data access in .NET 8 fall under the following themes:

Highly requested features

  • JSON columns
    Build on EF7 JSON support to further power the document/relational hybrid pattern.
  • Value objects
    Applications can use DDD-style value objects in EF models.
  • SQL queries for unmapped types
    Applications can execute more types of SQL query without dropping down to ADO.NET or using third-party libraries.

Cloud native and devices

Performance

  • Woodstar
    Fast, fully managed access to SQL Server and Azure SQL for .NET applications.

Visual Tooling

Developer experience

  • Make EF Core better
    Improve the developer experience be making many small improvements to EF Core

Find out more and give feedback

This post is a brief summary of the full EF8 plan. Please see the full plan for more information.

Your feedback on planning is important. The best way to indicate the importance of an issue is to vote (👍) for that issue on GitHub. This data will then feed into the planning process for the next release.

In addition, please comment on this issue if you believe we are missing something that is critical for EF8, or are focusing on the wrong areas.

@ajcvickers ajcvickers pinned this issue Dec 14, 2022
@ErikEJ
Copy link
Contributor

ErikEJ commented Dec 14, 2022

When will you open source Woodstar? Or at least share the code.

@ajcvickers
Copy link
Member Author

@ErikEJ As soon as possible. We're not holding it back for any particular reason, and I imagine @roji will share something pretty soon after he starts working on it.

@ErikEJ
Copy link
Contributor

ErikEJ commented Dec 14, 2022

Great. For some reason I was under the impression that @smitpatel had done a lot already..

@roji
Copy link
Member

roji commented Dec 14, 2022

@ErikEJ yeah, there's already some considerable done, but not yet done... Once we have something that works and is in a state to make public, we'll definitely do that.

@ajcvickers ajcvickers added this to the Discussions milestone Dec 14, 2022
@ajcvickers ajcvickers self-assigned this Dec 14, 2022
@davidroth
Copy link
Contributor

To increase usefulness of DDD aggregate mapping via owned (collection) types, the owned inheritance issue would be really important: #9630 😀

But yeah, maybe next time 😅🤞

But beside from that: Great plan as always 👍🚀

@ajcvickers ajcvickers removed their assignment Dec 22, 2022
@shadzhipopov
Copy link

What about recursive queries? In almost every project (if not every) I had to write some recursive CTEs, and it would be really nice if we can move this SQL to code. In SQL server, postgre and oracle, the SQL is almost identical, and I do not expect that every db provider will support them, but I believe this is somewhat missing piece...

Merry Christmas to all

@ajcvickers
Copy link
Member Author

@shadzhipopov Make sure to vote (👍) for #2865.

@janstrube
Copy link

I would like to see support for Table Value Parameters (TVP). This can increase performance and simplify business logic significantly when you have to deal with larger client side collections, yet EF has very limited support. The work around using bulk copy inserts into a temp table are sub-optimal.

@ilmax
Copy link
Contributor

ilmax commented Dec 30, 2022

Any chance to support global query filters with compiled models in the 8 timeframe?

@Misiu
Copy link

Misiu commented Jan 3, 2023

Please consider read-only entities (#7586).

@ajcvickers
Copy link
Member Author

@janstrube Please vote (👍) for #19016 and/or #13239. It's unlikely these will make it into 8.

@ilmax Please vote for #24897. This might make 8 based on some of the AOT work that is going on--see #29924.

@Misiu Please vote for #7586. It's unlikely this will make it into 8.

@codyburkard
Copy link

I would love to see support for managed identities in the CosmosDB provider. For security reasons managed identities are used extensively nowadays, but some apps end up being non compliant to security best practices because they are not supported by CosmosDB EF.

It would be great to see this prioritized!

@ajcvickers
Copy link
Member Author

@codyburkard Is this different to #26491?

@YohanSciubukgian
Copy link

Could you consider extending support for more advance CosmosDB SQL API queries ?

@ajcvickers
Copy link
Member Author

@YohanSciubukgian You'll need to be more specific. I suggest you look through issues labeled with "area-cosmos" and "area-query" and vote (👍) for those that you need, or file new, specific, issues for query constructs that you need and are not covered by existing issues.

@zejji
Copy link

zejji commented Jan 11, 2023

Since improved JSON/hybrid-relational support is one of the important goals of EF Core 8, I'm just including a cross-reference to #25272, since it means it is not currently feasible to map multiple CLR types to a single database column efficiently. For us, this has limited the utility of the JSON support.

Worth voting for if it affects others...

@bachratyg
Copy link

It would make shared/library code more foolproof to use if the context could be configured from the app service provider similar to how IConfigureOptions works. Currently I have to provide multiple extension methods that should be called on the service collection (to add core services), AddDbContext (to add interceptors), OnModelCreating (to add model classes that would show up in migrations) etc.

@ajcvickers
Copy link
Member Author

@bachratyg Can you file an issue for this and include considerably more detail. Ideally, include what the configuration from the service provider would look like, and how the model configuration relates to the DbContext type being configured and the DbSets it exposes.

@bachratyg
Copy link

Full proposal here: #30061

@YohanSciubukgian
Copy link

@YohanSciubukgian You'll need to be more specific. I suggest you look through issues labeled with "area-cosmos" and "area-query" and vote (👍) for those that you need, or file new, specific, issues for query constructs that you need and are not covered by existing issues.

More or less all the issues punted-for-7 & area cosmos. I have already thumbs up all issues I was interested in.
https://github.com/dotnet/efcore/issues?q=is%3Aopen+is%3Aissue+label%3Apunted-for-7.0+label%3Aarea-cosmos

@MgSam
Copy link

MgSam commented Feb 23, 2023

I'm super excited about the plans you guys have here. A lot of this stuff has been on my wishlist for literally a decade.

WoodStar- would love to hear more about this and offer feedback. ADO.NET is an ancient, clunky beast and I am ecstatic it's finally getting re-written. I think you should consider offering Dapper's functionality out-of-the-box. In addition, would love to see SqlBulkCopy get some love. In an ideal world it would be able to work with DataFrame- but that would require DataFrame actually getting finished. Any chance your team can adopt it?

T4 Tooling- this is super-exciting to hear that you guys are going to improve the T4 tooling. Can you share more details around this? Will it be your team doing this or another team? Some features I'd like to see:

  1. In-box syntax highlighting support
  2. Runtime T4 templates have generated .cs files which contain comments indicating the filepath of the T4 file they came from- this file path is absolute, which causes a lot of merge conflicts when different team members have repos checked out in different folders. The filepath should either be eliminated or made relative to the sln file
  3. Razor syntax being supported in T4 would be amazing.

Database-first- I think it's fantastic you're going to ship this out-of-the-box. I've always advocated that for large enterprises, code-first is often a non-starter.

@roji
Copy link
Member

roji commented Feb 23, 2023

@MgSam

WoodStar- would love to hear more about this and offer feedback. ADO.NET is an ancient, clunky beast and I am ecstatic it's finally getting re-written.

WoodStar would be about providing a fast, modern driver for SQL Server and SQL Azure, not about rewriting ADO.NET.

@ErikEJ
Copy link
Contributor

ErikEJ commented Feb 23, 2023

@MgSam I have published a very popular extension for reverse engineering - EF Core Power Tools - since 2017...

@MgSam
Copy link

MgSam commented Feb 23, 2023

@MgSam

WoodStar- would love to hear more about this and offer feedback. ADO.NET is an ancient, clunky beast and I am ecstatic it's finally getting re-written.

WoodStar would be about providing a fast, modern driver for SQL Server and SQL Azure, not about rewriting ADO.NET.

Isn't that just semantics though? If EF starts using WoodStar and we can finally stop using some of these core types in ADO.NET that haven't been touched in 15 years.

@MgSam I have published a very popular extension for reverse engineering - EF Core Power Tools - since 2017...

Yes, I think it's great! But I think out-of-the-box is critical for widespread adoption of any feature. I think most devs don't install any extensions, or worse have corporate policies actively banning them.

@roji
Copy link
Member

roji commented Apr 12, 2023

@abratvisma not at this point. Woodstar is currently a high-perf oriented experiment rather than something targeting full, mainstream usage right away.

@marchy
Copy link

marchy commented May 1, 2023

To increase usefulness of DDD aggregate mapping via owned (collection) types, the owned inheritance issue would be really important: #9630 😀

But yeah, maybe next time 😅🤞

But beside from that: Great plan as always 👍🚀

Fully agree here, inheritance is more important than ever for modelling domains, with modern type hierarchies being defined for all sorts of domain concepts that have natural variances (ie: Swift's associative enums which generate class hierarchies, Kotlin's data classes, type unions / discriminating unions proposed for C# V-Next etc.). Owned types are supposed to be transparent pass-throughs, but this limitation places a severe restriction on what they can be used for – needing to fall back to manual parsing (ie: JSON strings) for any structure that requires more complexity.

@wisamidris7
Copy link

Make Merge Migration Command

Like
Merge-Migration 1 4

This Mean From 1 4
4 Migrations Will Be Merged To Be Easy To Me Developer To
Also The Table In Database EFMigrations

Make In New Mergred Migration
builder.RemoveMigration("??????");

Cause I Go Manually In Databases Cause I Have Multitenant App
So This Will Be So So Aesome Update For EF8

@wisamidris7
Copy link

builder.RemoveMigration("????"); // This Mean Remove The Row Migration From EFMigrations Table
builder.CreateTable(????);

This Will Be Cool

@ajcvickers
Copy link
Member Author

@wisamidris7 This is tracked by #2174. Please vote (👍) for that issue.

@wisamidris7
Copy link

@wisamidris7 This is tracked by #2174. Please vote (👍) for that issue.

This Will Be Very Very Nice Feature

@wisamidris7
Copy link

You Can Make It Without Voting Cause My App Has 74 Migration This Just For Now
And This To To Bad And I Have Many Clients

@MichelZ
Copy link

MichelZ commented Jun 16, 2023

Yeah, giving migrations some love would be very nice

@brunom
Copy link

brunom commented Jul 9, 2023

Please use JSON to avoid the cartesian explosion of including related data.

@roji
Copy link
Member

roji commented Jul 9, 2023

@brunom that's #30958, which won't be happening for 8.0. But please up-vote it to show your interest.

@ErikEJ
Copy link
Contributor

ErikEJ commented Jul 9, 2023

@roji My semi-annual update: Any news and or timelines to share regarding Woodstar?

@roji
Copy link
Member

roji commented Jul 9, 2023

@ErikEJ not yet, promise to post something in a month or two once we're past the intensive .NET feature-work period.

@ErikEJ
Copy link
Contributor

ErikEJ commented Jul 9, 2023

@roji Cool. Highly appreciated.

@wisamidris7
Copy link

Also int.Parse() Feature Will Be Nice

@gsGabriel
Copy link

gsGabriel commented Jul 20, 2023

The EF is based in UnitOfWork and repository pattern and this is done through the DbContext class. But if I want to expose this implementation through an interface to other layers, we lose some features such as the CompiledQueries or ContextFactory because a concrete class of DbContext is required. Perhaps the API, instead of requiring a concrete DbContext class, would require an IDbContext interface so that when we expose the interface that implements the Context, it can take advantage of these features.Would it be nice to have interfaces instead of concrete classes, or do you have a specific reason for that?

Another thing I would like to know, thinking about crud systems with pagination pages, many times we need to make two queries to assemble the pagination structure. A query to get the total and another to get the paginated list, however, the DbContext is not thread-safe and we cannot do both operations at the same time. Wouldn't it be possible to create a DBContext scope that would allow this concurrent execution?

@ajcvickers
Copy link
Member Author

@gsGabriel Re interfaces, we recommend you create your own interfaces. See discussion here: #16470. Re concurrent execution, we could, but it would almost always be the wrong thing to use.

@gsGabriel
Copy link

@ajcvickers I agree, but many times we need to get small pieces of data to compose an aggregate, I think that these multiple pieces could happen asynchronously.

What about queries with multiple result sets? could we have something in the future? so we could compose these queries and return them in one go. I would still prefer to allow concurrent executions but it would help in most scenarios

@ajcvickers
Copy link
Member Author

@gsGabriel Multiple queries in a single round-trip is tracked by #10879.

@idamachmadfaizin
Copy link

If possible please add specific IgnoreQueryFilters

@ErikEJ
Copy link
Contributor

ErikEJ commented Sep 2, 2023

@idamachmadfaizin EF Core 8 is basically out the door

@roji
Copy link
Member

roji commented Sep 2, 2023

Everyone, as @ErikEJ wrote above, EF 8 has now gone into stabilization mode, which means that any features which haven't already been merge won't be making it in. For the rest of the release - until November - we'll be concentrating on fixing bugs and stabilizing everything.

@LyonBlecher
Copy link

Something I just thought of based on my current situation. It would be nice to generate a DbContext etc based on a Sql Server database project. So ye, this is not for EF Core 8, but maybe could be planting a seed for future releases... ;)

@ErikEJ
Copy link
Contributor

ErikEJ commented Sep 7, 2023

@LyonBlecher You have been able to do that for years with EF Core Power Tools!
and the standard CLI tools as well

@LyonBlecher
Copy link

LyonBlecher commented Sep 8, 2023

@LyonBlecher You have been able to do that for years with EF Core Power Tools! and the standard CLI tools as well

I did not know that, now that i think about it, I use to use sql metal way back when. Thanks 😊

@atrauzzi
Copy link

atrauzzi commented Sep 27, 2023

As always, looking forward to EF growing!

Would like to gently nudge polymorphic relations. Maybe you have room? Maybe for 9? 🙏

@SimonCropp
Copy link
Contributor

should this be closed?

@ajcvickers ajcvickers closed this as not planned Won't fix, can't repro, duplicate, stale Dec 18, 2023
@ajcvickers ajcvickers unpinned this issue Feb 8, 2024
@ajcvickers ajcvickers added the closed-no-further-action The issue is closed and no further action is planned. label May 15, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
closed-no-further-action The issue is closed and no further action is planned.
Projects
None yet
Development

No branches or pull requests