Share via


ISqlQuery.FindColumn Method

Definition

Overloads

Name Description
FindColumn(IProperty)

Gets the column mapped to the given property. Returns null if no column is mapped to the given property.

FindColumn(String)

Gets the column with the given name. Returns null if no column with the given name is defined.

FindColumn(IProperty)

Source:
ISqlQuery.cs
Source:
ISqlQuery.cs
Source:
ISqlQuery.cs
Source:
ISqlQuery.cs
Source:
ISqlQuery.cs

Gets the column mapped to the given property. Returns null if no column is mapped to the given property.

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

Parameters

property
IProperty

Returns

Applies to

FindColumn(String)

Source:
ISqlQuery.cs
Source:
ISqlQuery.cs
Source:
ISqlQuery.cs
Source:
ISqlQuery.cs
Source:
ISqlQuery.cs

Gets the column with the given name. Returns null if no column with the given name is defined.

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

Parameters

name
String

Returns

Applies to