IMutableTypeBase.AddComplexProperty Method

Definition

Overloads

AddComplexProperty(String, Boolean)

Adds a complex property to this type.

AddComplexProperty(MemberInfo, String, Boolean)

Adds a complex property to this type.

AddComplexProperty(String, Type, Type, String, Boolean)

Adds a complex property to this type.

AddComplexProperty(String, Type, MemberInfo, Type, String, Boolean)

Adds a complex property to this type.

AddComplexProperty(String, Boolean)

Adds a complex property to this type.

public Microsoft.EntityFrameworkCore.Metadata.IMutableComplexProperty AddComplexProperty (string name, bool collection = false);
abstract member AddComplexProperty : string * bool -> Microsoft.EntityFrameworkCore.Metadata.IMutableComplexProperty
Public Function AddComplexProperty (name As String, Optional collection As Boolean = false) As IMutableComplexProperty

Parameters

name
String

The name of the property to add.

collection
Boolean

Indicates whether the property represents a collection.

Returns

The newly created property.

Applies to

AddComplexProperty(MemberInfo, String, Boolean)

Adds a complex property to this type.

[System.Diagnostics.CodeAnalysis.RequiresUnreferencedCode("Currently used only in tests")]
public virtual Microsoft.EntityFrameworkCore.Metadata.IMutableComplexProperty AddComplexProperty (System.Reflection.MemberInfo memberInfo, string? complexTypeName = default, bool collection = false);
[<System.Diagnostics.CodeAnalysis.RequiresUnreferencedCode("Currently used only in tests")>]
abstract member AddComplexProperty : System.Reflection.MemberInfo * string * bool -> Microsoft.EntityFrameworkCore.Metadata.IMutableComplexProperty
override this.AddComplexProperty : System.Reflection.MemberInfo * string * bool -> Microsoft.EntityFrameworkCore.Metadata.IMutableComplexProperty
Public Overridable Function AddComplexProperty (memberInfo As MemberInfo, Optional complexTypeName As String = Nothing, Optional collection As Boolean = false) As IMutableComplexProperty

Parameters

memberInfo
MemberInfo

The corresponding member on the class.

complexTypeName
String

The name of the complex type.

collection
Boolean

Indicates whether the property represents a collection.

Returns

The newly created property.

Attributes

Applies to

AddComplexProperty(String, Type, Type, String, Boolean)

Adds a complex property to this type.

public Microsoft.EntityFrameworkCore.Metadata.IMutableComplexProperty AddComplexProperty (string name, Type propertyType, Type complexType, string? complexTypeName = default, bool collection = false);
abstract member AddComplexProperty : string * Type * Type * string * bool -> Microsoft.EntityFrameworkCore.Metadata.IMutableComplexProperty
Public Function AddComplexProperty (name As String, propertyType As Type, complexType As Type, Optional complexTypeName As String = Nothing, Optional collection As Boolean = false) As IMutableComplexProperty

Parameters

name
String

The name of the property to add.

propertyType
Type

The property type.

complexType
Type

The type of value the property will hold.

complexTypeName
String

The name of the complex type.

collection
Boolean

Indicates whether the property represents a collection.

Returns

The newly created property.

Applies to

AddComplexProperty(String, Type, MemberInfo, Type, String, Boolean)

Adds a complex property to this type.

public Microsoft.EntityFrameworkCore.Metadata.IMutableComplexProperty AddComplexProperty (string name, Type propertyType, System.Reflection.MemberInfo memberInfo, Type complexType, string? complexTypeName = default, bool collection = false);
abstract member AddComplexProperty : string * Type * System.Reflection.MemberInfo * Type * string * bool -> Microsoft.EntityFrameworkCore.Metadata.IMutableComplexProperty
Public Function AddComplexProperty (name As String, propertyType As Type, memberInfo As MemberInfo, complexType As Type, Optional complexTypeName As String = Nothing, Optional collection As Boolean = false) As IMutableComplexProperty

Parameters

name
String

The name of the property to add.

propertyType
Type

The property type.

memberInfo
MemberInfo

The corresponding CLR type member.

An indexer with a String parameter and Object return type can be used.

complexType
Type

The type of value the property will hold.

complexTypeName
String

The name of the complex type.

collection
Boolean

Indicates whether the property represents a collection.

Returns

The newly created property.

Applies to