IStoreFunction.FindColumn 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
FindColumn(IProperty) |
Gets the column mapped to the given property. Returns |
FindColumn(String) |
Gets the column with the given name. Returns |
FindColumn(IProperty)
Gets the column mapped to the given property. Returns null
if no column is mapped to the given property.
public Microsoft.EntityFrameworkCore.Metadata.IFunctionColumn FindColumn (Microsoft.EntityFrameworkCore.Metadata.IProperty property);
public Microsoft.EntityFrameworkCore.Metadata.IFunctionColumn? FindColumn (Microsoft.EntityFrameworkCore.Metadata.IProperty property);
abstract member FindColumn : Microsoft.EntityFrameworkCore.Metadata.IProperty -> Microsoft.EntityFrameworkCore.Metadata.IFunctionColumn
Public Function FindColumn (property As IProperty) As IFunctionColumn
Parameters
- property
- IProperty
Returns
Applies to
FindColumn(String)
Gets the column with the given name. Returns null
if no column with the given name is defined for the returned row set.
public Microsoft.EntityFrameworkCore.Metadata.IFunctionColumn FindColumn (string name);
public Microsoft.EntityFrameworkCore.Metadata.IFunctionColumn? FindColumn (string name);
abstract member FindColumn : string -> Microsoft.EntityFrameworkCore.Metadata.IFunctionColumn
Public Function FindColumn (name As String) As IFunctionColumn
Parameters
- name
- String
Returns
Applies to
Entity Framework