-
Notifications
You must be signed in to change notification settings - Fork 3.2k
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
Enable optional dependents when using table splitting #9005
Comments
subscribed! :) |
Another way we could consider addressing this is by storing a sentinel value indicating if the object exists in a separate Boolean column. E.g. think |
What is the status of this? As I think it is kind of a show stopper |
@JackHerring This is on the list of things we plan to do, but we don't have a specific version/date for when it would be available. |
@AndriySvyryd will owned types be released in 2.0.0 if it is not fully implemented? |
@JackHerring Yes. You can map optional owned types to a different table. |
@AndriySvyryd how do I go about this when using TPH? |
@JackHerring Owned types don't support inheritance, so I assume that you mean that the owner is using TPH, which doesn't affect configuration: modelBuilder.Entity<Owner>().OwnsOne(p => p.Owned).ToTable("Owned"); |
Is there any progress on the resolution of this issue? |
@jrote1 This issue is in the Backlog milestone. This means that it is not going to happen for the 2.1 release. We will re-assess the backlog following the 2.1 release and consider this item at that time. However, keep in mind that there are many other high priority features with which it will be competing for resources. |
@jrote1 You can vote for features by using the +1 reaction (👍) on the original comment |
I would really like to see this. The non-nullability of an owned type seriously restricts the usefulness of this feature. |
Sounds great Julie, look forward to reading it :) |
Note from triage: remember to add API for configuring optional owned types, whether relational/table splitting or not, when implementing this. See #10818 |
We should also handle Added and Deleted dependents for Unchanged principals as updates in the database. |
Attention all subscribers: Could you provide a simple description of the scenario that this feature would enable?
|
Probably the most important point here would be that you want to separate the decision for how your entity is designed from your database design. A separate table or not for, say, a primary address, should be a decision that is transparent from that you want this to appear as a separate object on your entity. In that sense, an owned type is basically a shortcut notation for a 1-to-[0..1] relation, and the fact that the owned object is rendered as null / none (f#) the most clear way of expressing that it is currently 1-to-[0], rather than 1-to-1 with no properties set, so that you might need to add properties to indicate whether it is set or not. As I seem to recall hearing on a podcast (.NET Rocks probably) that you are investigating using Code-First EF modelling for MongoDb and other DocumentDb type databases. In those systems, a child json object will simply be or not be there in the document, and that will result in the behavior as people have expressed to want to see here. And then you want consistent behavior whether you use a sql or documentdb type datastore backing. Similarly, you may want to optimise your database by having more data per table or less in terms of partitioning etc. This should not have any influence on your Code First modeling, preferably. I currently always design and implement my repositories at least partly in both SQL(Lite) and MongoDb and use them for state objects that are injected into business objects that only define through interfaces what state (and repository) functionality they need, so neither layer knows about the other and there are no dependencies on either side. The best way to validate this is by being able to DI either repository implementation into the business logic and everything still works and works well. This means preferably going through the root entity (aggregate) by default and then working down from there, which suits me well because I follow Domain Driven Design principles (they also work for MicroServices). In that sense, as I interact with injected state objects, the fact that EFCore would always give back a state object for the owned entity but MongoDb wouldn't is a specific scenario for me personally, especially as with 2.0, EFCore is starting to reach a level of quality that makes me want to use it over almost anything else out there. ;) (so good job everyone) |
you did it? |
@julielerman Yes, all dependents are now optional. (Shipping in preview 4) |
@AndriySvyryd you are our hero. Thanks a lot. |
Does this mean there is no way to make a dependent mandatory like 2.2? |
@pauldbentley - That is true. See #12100 |
@pauldbentley That is something I would recommend defining in the logic of your classes. But it does mean that ef can't double check that for you prior to executing relevant SQL. |
@pauldbentley @smitpatel @julielerman I am hitting this issue due to the breaking change. My classes are designed to ensure that this isn't an issue at the domain layer, but in my opinion this has been a poorly designed change. The configuration builder still allows you to add IsRequired(), which of course has no effect at all on the generated migration, leaving you with a database with the potential for consistency issues. |
this only applies to the table split configuration, right? |
@marcwittke - It applies to everything as there is no way to enforce dependents being required in EF Core. So All dependents are optional in all scenarios. |
But without table splitting I have a strange behavior: I create an instance with an owned type entity that is null, but when I load it back from the database it is not null any more, but an owned type instance with all values being null. |
@marcwittke - Please file a new issue with runnable repro code which shows the issue you are seeing. |
EFCore 3.1.6 It's probably not so obvious how one would solve this issue, as it kind of breaks the current concept. E.g. what would happen if the included nested collections are empty? Is the split entity then dropped completely (NULL)? EDIT: |
@morinow In 6.0 we made a breaking change to throw in this scenario. ob.Navigation(o => o.ShippingAddress)
.IsRequired(); |
One way of doing this could be mapping the dependent FK to non-PK columns
The text was updated successfully, but these errors were encountered: