RelationalPropertyExtensions.GetOverrides Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
GetOverrides(IConventionProperty) |
Returns all the property facet overrides. This method is typically used by database providers (and other extensions). It is generally not used in application code. |
GetOverrides(IMutableProperty) |
Returns all the property facet overrides. This method is typically used by database providers (and other extensions). It is generally not used in application code. |
GetOverrides(IProperty) |
Returns all the property facet overrides. This method is typically used by database providers (and other extensions). It is generally not used in application code. |
GetOverrides(IReadOnlyProperty) |
Returns all the property facet overrides. This method is typically used by database providers (and other extensions). It is generally not used in application code. |
GetOverrides(IConventionProperty)
Returns all the property facet overrides.
This method is typically used by database providers (and other extensions). It is generally not used in application code.
public static System.Collections.Generic.IEnumerable<Microsoft.EntityFrameworkCore.Metadata.IConventionRelationalPropertyOverrides> GetOverrides (this Microsoft.EntityFrameworkCore.Metadata.IConventionProperty property);
static member GetOverrides : Microsoft.EntityFrameworkCore.Metadata.IConventionProperty -> seq<Microsoft.EntityFrameworkCore.Metadata.IConventionRelationalPropertyOverrides>
<Extension()>
Public Function GetOverrides (property As IConventionProperty) As IEnumerable(Of IConventionRelationalPropertyOverrides)
Parameters
- property
- IConventionProperty
The property.
Returns
The property facet overrides.
Applies to
GetOverrides(IMutableProperty)
Returns all the property facet overrides.
This method is typically used by database providers (and other extensions). It is generally not used in application code.
public static System.Collections.Generic.IEnumerable<Microsoft.EntityFrameworkCore.Metadata.IMutableRelationalPropertyOverrides> GetOverrides (this Microsoft.EntityFrameworkCore.Metadata.IMutableProperty property);
static member GetOverrides : Microsoft.EntityFrameworkCore.Metadata.IMutableProperty -> seq<Microsoft.EntityFrameworkCore.Metadata.IMutableRelationalPropertyOverrides>
<Extension()>
Public Function GetOverrides (property As IMutableProperty) As IEnumerable(Of IMutableRelationalPropertyOverrides)
Parameters
- property
- IMutableProperty
The property.
Returns
The property facet overrides.
Applies to
GetOverrides(IProperty)
Returns all the property facet overrides.
This method is typically used by database providers (and other extensions). It is generally not used in application code.
public static System.Collections.Generic.IEnumerable<Microsoft.EntityFrameworkCore.Metadata.IRelationalPropertyOverrides> GetOverrides (this Microsoft.EntityFrameworkCore.Metadata.IProperty property);
static member GetOverrides : Microsoft.EntityFrameworkCore.Metadata.IProperty -> seq<Microsoft.EntityFrameworkCore.Metadata.IRelationalPropertyOverrides>
<Extension()>
Public Function GetOverrides (property As IProperty) As IEnumerable(Of IRelationalPropertyOverrides)
Parameters
- property
- IProperty
The property.
Returns
The property facet overrides.
Applies to
GetOverrides(IReadOnlyProperty)
Returns all the property facet overrides.
This method is typically used by database providers (and other extensions). It is generally not used in application code.
public static System.Collections.Generic.IEnumerable<Microsoft.EntityFrameworkCore.Metadata.IReadOnlyRelationalPropertyOverrides> GetOverrides (this Microsoft.EntityFrameworkCore.Metadata.IReadOnlyProperty property);
static member GetOverrides : Microsoft.EntityFrameworkCore.Metadata.IReadOnlyProperty -> seq<Microsoft.EntityFrameworkCore.Metadata.IReadOnlyRelationalPropertyOverrides>
<Extension()>
Public Function GetOverrides (property As IReadOnlyProperty) As IEnumerable(Of IReadOnlyRelationalPropertyOverrides)
Parameters
- property
- IReadOnlyProperty
The property.
Returns
The property facet overrides.
Applies to
Entity Framework