-
Notifications
You must be signed in to change notification settings - Fork 3.2k
Support "unconstrained" foreign key relationships #13146
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
Comments
Since there is no responses to this, can I assume there is no solution to this problem? I have this exact requirement but no way to implement it in EF Core. Every migration I now add I have to remove the constraints added in the migration scripts |
@mariusGundersen That's the best workaround until #2725 is implemented |
Since it's mentioned a few times in different issues, are there any plans to support something like this in a future release? It's quite frustrating having no control over created constraints. Thank you for your time! :) |
@Basssiiie This issue is in the Backlog milestone. This means that it is not planned for the next release (EF Core 5.0). We will re-assess the backlog following the this 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. Please vote (👍) for the issue to indicate your interest; based on these votes, this issue is currently 73rd in the list of most voted for features not yet implemented.) |
I've needed a solution for this a number of times. This is particularly necessary when synchronizing data between a local and remote database where you can't make a global snapshot to ensure consistent state across everything. |
@TonyValenti how did you workedaround? |
I haven't had a chance to test this but an associate recommended just running a sql script to delete the foreign key constraint and using EF core as is. Not sure if That will work though. |
As a workaround we consider using placeholders for this. Tough implications of this could be that all values should be nullable. |
What is the status of this issue? It is the exact problem I am running into. I have records from a 3rd party system that are mapped to entities in our application. The 3rd party system tracks employee hours against projects. That system has its own project ids and user ids needed for invoicing in that system. When we import those hour logs into our system they map to our internal Users and projects via the project and user id of the the 3rd party system. Our tables:
User
3rdPartyHours
Since the 3rd party hours are imported programmatically, there will be times when a new employee or new project is added to the 3rd party system that has not been created in our system yet. When that happens we have runtime code that identifies the missing User or Project. The problem is that we need navigation properties from the imported hours to our projects and users. We use the 3rd party project and user ids as navigation properties to our projects and users. Since EF creates foreign key constraints we get errors when the 3rd party hours are imported and the new user or project has not been created and associated in our system yet. The functionality would be much more useful if the 3rd party hour entities allowed for navigation properties that could be null. As stated before, we can handle that situation at runtime and notify the user that a new project or user needs to be added in our system to map to the 3rd party project or user. |
@lwestfall Note that this issue is not about EF Core creating the constraints in the database--that is tracked by #15854. Rather this issue is about allowing EF to work with different foreign key semantics. Simply removing the database constraint, while required for this, is not sufficient to make EF Core work with these different semantics. |
@ajcvickers I appreciate the correction, I've moved my comment to #15854 where it's more relevant |
Note for team: When we use FKs between Cosmos documents, they are essentially unconstrained, since Cosmos does not have FK constraints. See https://learn.microsoft.com/en-us/azure/cosmos-db/nosql/modeling-data#what-about-foreign-keys |
Happy new year!! Any update on this? |
@rjlacanlaled It's on our radar, but unlikely to make it into EF 10 |
We have a number of use cases where this would be very helpful. For example, we have a "loose" navigation between a person, and a phone call history, where we use the phone number as the key to figure out which calls were made by which person. There is no constraint on the database, and I am having great success using EFCore navigations for the relationship. builder.Entity<Person>()
.HasMany(x => x.Calls)
.WithOne()
.HasPrincipalKey(x => x.NormalizedPhoneNumber)
.HasForeignKey(x => x.NormalizedPhoneNumber); However, there are problems with it today:
|
EF Core uses a "foreign key" property that is matched to a "principal key" to define a relationship, where one or both of these may be shadow properties. For relational databases, these relationships are almost always backed by a constraint which means that if an FK property has a value, then there must exist a principal key that matches. We use this information to make decisions/optimizations on which queries to generate. In #9470, we decided to maintain these semantics across providers.
However, there are some cases where the FK and PK exist and define the relationship, but are not constrained in the same way as a relational constraint would do. Specifically, this means that just because an FK property has a value doesn't mean that there is necessarily a matching PK value. This means:
The text was updated successfully, but these errors were encountered: