SqlServerPropertyExtensions.GetIdentityIncrementConfigurationSource 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
GetIdentityIncrementConfigurationSource(IConventionProperty) |
Returns the ConfigurationSource for the identity increment. |
GetIdentityIncrementConfigurationSource(IConventionRelationalPropertyOverrides) |
Returns the ConfigurationSource for the identity increment for a particular table. |
GetIdentityIncrementConfigurationSource(IConventionProperty, StoreObjectIdentifier) |
Returns the ConfigurationSource for the identity increment for a particular table. |
GetIdentityIncrementConfigurationSource(IConventionProperty)
Returns the ConfigurationSource for the identity increment.
public static Microsoft.EntityFrameworkCore.Metadata.ConfigurationSource? GetIdentityIncrementConfigurationSource (this Microsoft.EntityFrameworkCore.Metadata.IConventionProperty property);
static member GetIdentityIncrementConfigurationSource : Microsoft.EntityFrameworkCore.Metadata.IConventionProperty -> Nullable<Microsoft.EntityFrameworkCore.Metadata.ConfigurationSource>
<Extension()>
Public Function GetIdentityIncrementConfigurationSource (property As IConventionProperty) As Nullable(Of ConfigurationSource)
Parameters
- property
- IConventionProperty
The property.
Returns
The ConfigurationSource for the identity increment.
Applies to
GetIdentityIncrementConfigurationSource(IConventionRelationalPropertyOverrides)
Returns the ConfigurationSource for the identity increment for a particular table.
public static Microsoft.EntityFrameworkCore.Metadata.ConfigurationSource? GetIdentityIncrementConfigurationSource (this Microsoft.EntityFrameworkCore.Metadata.IConventionRelationalPropertyOverrides overrides);
static member GetIdentityIncrementConfigurationSource : Microsoft.EntityFrameworkCore.Metadata.IConventionRelationalPropertyOverrides -> Nullable<Microsoft.EntityFrameworkCore.Metadata.ConfigurationSource>
<Extension()>
Public Function GetIdentityIncrementConfigurationSource (overrides As IConventionRelationalPropertyOverrides) As Nullable(Of ConfigurationSource)
Parameters
- overrides
- IConventionRelationalPropertyOverrides
The property overrides.
Returns
The ConfigurationSource for the identity increment.
Applies to
GetIdentityIncrementConfigurationSource(IConventionProperty, StoreObjectIdentifier)
Returns the ConfigurationSource for the identity increment for a particular table.
public static Microsoft.EntityFrameworkCore.Metadata.ConfigurationSource? GetIdentityIncrementConfigurationSource (this Microsoft.EntityFrameworkCore.Metadata.IConventionProperty property, in Microsoft.EntityFrameworkCore.Metadata.StoreObjectIdentifier storeObject);
static member GetIdentityIncrementConfigurationSource : Microsoft.EntityFrameworkCore.Metadata.IConventionProperty * StoreObjectIdentifier -> Nullable<Microsoft.EntityFrameworkCore.Metadata.ConfigurationSource>
<Extension()>
Public Function GetIdentityIncrementConfigurationSource (property As IConventionProperty, ByRef storeObject As StoreObjectIdentifier) As Nullable(Of ConfigurationSource)
Parameters
- property
- IConventionProperty
The property.
- storeObject
- StoreObjectIdentifier
The identifier of the table containing the column.
Returns
The ConfigurationSource for the identity increment.
Applies to
Entity Framework