Description
When creating a foreign key that references multiple nullable columns in Postgresql it's possible to add a MATCH
expression on the foreign key to ensure that all values are either null, or are all required.
From the documentation:
A value inserted into the referencing column(s) is matched against the values of the referenced table and referenced columns using the given match type. There are three match types:
MATCH FULL
,MATCH PARTIAL
, andMATCH SIMPLE
(which is the default).MATCH FULL
will not allow one column of a multicolumn foreign key to be null unless all foreign key columns are null; if they are all null, the row is not required to have a match in the referenced table.MATCH SIMPLE
allows any of the foreign key columns to be null; if any of them are null, the row is not required to have a match in the referenced table.MATCH PARTIAL
is not yet implemented.
It would be useful if this could be configured on the relationship in the model builder.
An example of how this might look:
entity.HasOne(static e => e.Unit)
.WithMany(static e => e.Rules)
.HasForeignKey(static e => new
{
e.OwnerId,
e.UnitId,
})
.HasPrincipalKey(static e => new
{
e.OwnerId,
e.Id,
})
.HasMatchType(MatchType.Full); // new extension to support the match type
which would result in the DDL:
CONSTRAINT "FK_Rules_Units_OwnerId_UnitId"
FOREIGN KEY ("OwnerId","UnitId")
REFERENCES public."Units"("OwnerId","Id")
MATCH FULL