ConventionModelExtensions.IsOwned(IConventionModel, Type) Method

Definition

Returns a value indicating whether the entity types using the given type should be configured as owned types when discovered.

public static bool IsOwned (this Microsoft.EntityFrameworkCore.Metadata.IConventionModel model, Type clrType);
public static bool IsOwned (this Microsoft.EntityFrameworkCore.Metadata.IConventionModel model, Type type);
static member IsOwned : Microsoft.EntityFrameworkCore.Metadata.IConventionModel * Type -> bool
static member IsOwned : Microsoft.EntityFrameworkCore.Metadata.IConventionModel * Type -> bool
<Extension()>
Public Function IsOwned (model As IConventionModel, clrType As Type) As Boolean
<Extension()>
Public Function IsOwned (model As IConventionModel, type As Type) As Boolean

Parameters

model
IConventionModel

The model.

clrTypetype
Type

The type of the entity type that could be owned.

Returns

true if the given type name is marked as owned, null otherwise.

Applies to