RelationshipDiscoveryConvention.ShouldBeOwned(Type, IConventionModel) Method

Definition

Returns a value indicating whether the given entity type should be added as owned if it isn't currently in the model.

protected virtual bool? ShouldBeOwned (Type targetType, Microsoft.EntityFrameworkCore.Metadata.IConventionModel model);
abstract member ShouldBeOwned : Type * Microsoft.EntityFrameworkCore.Metadata.IConventionModel -> Nullable<bool>
override this.ShouldBeOwned : Type * Microsoft.EntityFrameworkCore.Metadata.IConventionModel -> Nullable<bool>
Protected Overridable Function ShouldBeOwned (targetType As Type, model As IConventionModel) As Nullable(Of Boolean)

Parameters

targetType
Type

Target entity type.

model
IConventionModel

The model.

Returns

true if the given entity type should be owned.

Applies to