ISqlQuery.FindColumn 方法

定义

重载

FindColumn(IProperty)

获取映射到给定属性的列。 null如果未将列映射到给定属性,则返回 。

FindColumn(String)

获取具有给定名称的列。 null如果未定义具有给定名称的列,则返回 。

FindColumn(IProperty)

获取映射到给定属性的列。 null如果未将列映射到给定属性,则返回 。

public Microsoft.EntityFrameworkCore.Metadata.ISqlQueryColumn FindColumn (Microsoft.EntityFrameworkCore.Metadata.IProperty property);
public Microsoft.EntityFrameworkCore.Metadata.ISqlQueryColumn? FindColumn (Microsoft.EntityFrameworkCore.Metadata.IProperty property);
abstract member FindColumn : Microsoft.EntityFrameworkCore.Metadata.IProperty -> Microsoft.EntityFrameworkCore.Metadata.ISqlQueryColumn
Public Function FindColumn (property As IProperty) As ISqlQueryColumn

参数

property
IProperty

返回

适用于

FindColumn(String)

获取具有给定名称的列。 null如果未定义具有给定名称的列,则返回 。

public Microsoft.EntityFrameworkCore.Metadata.ISqlQueryColumn FindColumn (string name);
public Microsoft.EntityFrameworkCore.Metadata.ISqlQueryColumn? FindColumn (string name);
abstract member FindColumn : string -> Microsoft.EntityFrameworkCore.Metadata.ISqlQueryColumn
Public Function FindColumn (name As String) As ISqlQueryColumn

参数

name
String

返回

适用于