My attempt to designate core.Containers.RowId as this table's PK failed. Too many code paths assume EntityId is the (pseudo) PK... for example, lookups to the Containers table. Best to revert it for now. Better would be to designate EntityId as an actual PK, but it's a nullable column so this is not a trivial change.
Rationale
My attempt to designate
core.Containers.RowId
as this table's PK failed. Too many code paths assumeEntityId
is the (pseudo) PK... for example, lookups to the Containers table. Best to revert it for now. Better would be to designateEntityId
as an actual PK, but it's a nullable column so this is not a trivial change.Related Pull Requests