Share via


RuntimeRelationalPropertyOverrides Constructors

Definition

Overloads

RuntimeRelationalPropertyOverrides(RuntimeProperty, Boolean, String)

Initializes a new instance of the RuntimeRelationalPropertyOverrides class.

RuntimeRelationalPropertyOverrides(RuntimeProperty, StoreObjectIdentifier, Boolean, String)

Initializes a new instance of the RuntimeRelationalPropertyOverrides class.

RuntimeRelationalPropertyOverrides(RuntimeProperty, Boolean, String)

Initializes a new instance of the RuntimeRelationalPropertyOverrides class.

public RuntimeRelationalPropertyOverrides (Microsoft.EntityFrameworkCore.Metadata.RuntimeProperty property, bool columnNameOverriden, string? columnName);
new Microsoft.EntityFrameworkCore.Metadata.RuntimeRelationalPropertyOverrides : Microsoft.EntityFrameworkCore.Metadata.RuntimeProperty * bool * string -> Microsoft.EntityFrameworkCore.Metadata.RuntimeRelationalPropertyOverrides
Public Sub New (property As RuntimeProperty, columnNameOverriden As Boolean, columnName As String)

Parameters

property
RuntimeProperty

The property for which the overrides are applied.

columnNameOverriden
Boolean

Whether the column name is overridden.

columnName
String

The column name.

Applies to

RuntimeRelationalPropertyOverrides(RuntimeProperty, StoreObjectIdentifier, Boolean, String)

Initializes a new instance of the RuntimeRelationalPropertyOverrides class.

public RuntimeRelationalPropertyOverrides (Microsoft.EntityFrameworkCore.Metadata.RuntimeProperty property, in Microsoft.EntityFrameworkCore.Metadata.StoreObjectIdentifier storeObject, bool columnNameOverridden, string? columnName);
new Microsoft.EntityFrameworkCore.Metadata.RuntimeRelationalPropertyOverrides : Microsoft.EntityFrameworkCore.Metadata.RuntimeProperty * StoreObjectIdentifier * bool * string -> Microsoft.EntityFrameworkCore.Metadata.RuntimeRelationalPropertyOverrides
Public Sub New (property As RuntimeProperty, ByRef storeObject As StoreObjectIdentifier, columnNameOverridden As Boolean, columnName As String)

Parameters

property
RuntimeProperty

The property for which the overrides are applied.

storeObject
StoreObjectIdentifier

The store object for which the configuration is applied.

columnNameOverridden
Boolean

Whether the column name is overridden.

columnName
String

The column name.

Applies to