RelationalPropertyExtensions.FindSharedStoreObjectRootProperty 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
FindSharedStoreObjectRootProperty(IConventionProperty, StoreObjectIdentifier) |
Finds the first IProperty that is mapped to the same column in a shared table-like object. This method is typically used by database providers (and other extensions). It is generally not used in application code. |
FindSharedStoreObjectRootProperty(IMutableProperty, StoreObjectIdentifier) |
Finds the first IProperty that is mapped to the same column in a shared table-like object. This method is typically used by database providers (and other extensions). It is generally not used in application code. |
FindSharedStoreObjectRootProperty(IProperty, StoreObjectIdentifier) |
Finds the first IProperty that is mapped to the same column in a shared table-like object. This method is typically used by database providers (and other extensions). It is generally not used in application code. |
FindSharedStoreObjectRootProperty(IReadOnlyProperty, StoreObjectIdentifier) |
Finds the first IProperty that is mapped to the same column in a shared table-like object. This method is typically used by database providers (and other extensions). It is generally not used in application code. |
FindSharedStoreObjectRootProperty(IConventionProperty, StoreObjectIdentifier)
Finds the first IProperty that is mapped to the same column in a shared table-like object.
This method is typically used by database providers (and other extensions). It is generally not used in application code.
public static Microsoft.EntityFrameworkCore.Metadata.IConventionProperty FindSharedStoreObjectRootProperty (this Microsoft.EntityFrameworkCore.Metadata.IConventionProperty property, in Microsoft.EntityFrameworkCore.Metadata.StoreObjectIdentifier storeObject);
public static Microsoft.EntityFrameworkCore.Metadata.IConventionProperty? FindSharedStoreObjectRootProperty (this Microsoft.EntityFrameworkCore.Metadata.IConventionProperty property, in Microsoft.EntityFrameworkCore.Metadata.StoreObjectIdentifier storeObject);
static member FindSharedStoreObjectRootProperty : Microsoft.EntityFrameworkCore.Metadata.IConventionProperty * StoreObjectIdentifier -> Microsoft.EntityFrameworkCore.Metadata.IConventionProperty
<Extension()>
Public Function FindSharedStoreObjectRootProperty (property As IConventionProperty, ByRef storeObject As StoreObjectIdentifier) As IConventionProperty
Parameters
- property
- IConventionProperty
The property.
- storeObject
- StoreObjectIdentifier
The identifier of the table-like store object containing the column.
Returns
The property found, or null
if none was found.
Applies to
FindSharedStoreObjectRootProperty(IMutableProperty, StoreObjectIdentifier)
Finds the first IProperty that is mapped to the same column in a shared table-like object.
This method is typically used by database providers (and other extensions). It is generally not used in application code.
public static Microsoft.EntityFrameworkCore.Metadata.IMutableProperty FindSharedStoreObjectRootProperty (this Microsoft.EntityFrameworkCore.Metadata.IMutableProperty property, in Microsoft.EntityFrameworkCore.Metadata.StoreObjectIdentifier storeObject);
public static Microsoft.EntityFrameworkCore.Metadata.IMutableProperty? FindSharedStoreObjectRootProperty (this Microsoft.EntityFrameworkCore.Metadata.IMutableProperty property, in Microsoft.EntityFrameworkCore.Metadata.StoreObjectIdentifier storeObject);
static member FindSharedStoreObjectRootProperty : Microsoft.EntityFrameworkCore.Metadata.IMutableProperty * StoreObjectIdentifier -> Microsoft.EntityFrameworkCore.Metadata.IMutableProperty
<Extension()>
Public Function FindSharedStoreObjectRootProperty (property As IMutableProperty, ByRef storeObject As StoreObjectIdentifier) As IMutableProperty
Parameters
- property
- IMutableProperty
The property.
- storeObject
- StoreObjectIdentifier
The identifier of the table-like store object containing the column.
Returns
The property found, or null
if none was found.
Applies to
FindSharedStoreObjectRootProperty(IProperty, StoreObjectIdentifier)
Finds the first IProperty that is mapped to the same column in a shared table-like object.
This method is typically used by database providers (and other extensions). It is generally not used in application code.
public static Microsoft.EntityFrameworkCore.Metadata.IProperty FindSharedStoreObjectRootProperty (this Microsoft.EntityFrameworkCore.Metadata.IProperty property, in Microsoft.EntityFrameworkCore.Metadata.StoreObjectIdentifier storeObject);
public static Microsoft.EntityFrameworkCore.Metadata.IProperty? FindSharedStoreObjectRootProperty (this Microsoft.EntityFrameworkCore.Metadata.IProperty property, in Microsoft.EntityFrameworkCore.Metadata.StoreObjectIdentifier storeObject);
static member FindSharedStoreObjectRootProperty : Microsoft.EntityFrameworkCore.Metadata.IProperty * StoreObjectIdentifier -> Microsoft.EntityFrameworkCore.Metadata.IProperty
<Extension()>
Public Function FindSharedStoreObjectRootProperty (property As IProperty, ByRef storeObject As StoreObjectIdentifier) As IProperty
Parameters
- property
- IProperty
The property.
- storeObject
- StoreObjectIdentifier
The identifier of the table-like store object containing the column.
Returns
The property found, or null
if none was found.
Applies to
FindSharedStoreObjectRootProperty(IReadOnlyProperty, StoreObjectIdentifier)
Finds the first IProperty that is mapped to the same column in a shared table-like object.
This method is typically used by database providers (and other extensions). It is generally not used in application code.
public static Microsoft.EntityFrameworkCore.Metadata.IReadOnlyProperty? FindSharedStoreObjectRootProperty (this Microsoft.EntityFrameworkCore.Metadata.IReadOnlyProperty property, in Microsoft.EntityFrameworkCore.Metadata.StoreObjectIdentifier storeObject);
static member FindSharedStoreObjectRootProperty : Microsoft.EntityFrameworkCore.Metadata.IReadOnlyProperty * StoreObjectIdentifier -> Microsoft.EntityFrameworkCore.Metadata.IReadOnlyProperty
<Extension()>
Public Function FindSharedStoreObjectRootProperty (property As IReadOnlyProperty, ByRef storeObject As StoreObjectIdentifier) As IReadOnlyProperty
Parameters
- property
- IReadOnlyProperty
The property.
- storeObject
- StoreObjectIdentifier
The identifier of the table-like store object containing the column.
Returns
The property found, or null
if none was found.
Applies to
Entity Framework