ConventionModelExtensions.AddOwned(IConventionModel, Type, Boolean) Method

Definition

Marks the given entity type as owned, indicating that when discovered entity types using the given type should be configured as owned.

public static void AddOwned (this Microsoft.EntityFrameworkCore.Metadata.IConventionModel model, Type clrType, bool fromDataAnnotation = false);
public static void AddOwned (this Microsoft.EntityFrameworkCore.Metadata.IConventionModel model, Type type, bool fromDataAnnotation = false);
static member AddOwned : Microsoft.EntityFrameworkCore.Metadata.IConventionModel * Type * bool -> unit
static member AddOwned : Microsoft.EntityFrameworkCore.Metadata.IConventionModel * Type * bool -> unit
<Extension()>
Public Sub AddOwned (model As IConventionModel, clrType As Type, Optional fromDataAnnotation As Boolean = false)
<Extension()>
Public Sub AddOwned (model As IConventionModel, type As Type, Optional fromDataAnnotation As Boolean = false)

Parameters

model
IConventionModel

The model to add the owned type to.

clrTypetype
Type

The type of the entity type that should be owned.

fromDataAnnotation
Boolean

Indicates whether the configuration was specified using a data annotation.

Applies to