次の方法で共有


TableValuedFunctionExpression コンストラクター

定義

オーバーロード

TableValuedFunctionExpression(IStoreFunction, IReadOnlyList<SqlExpression>)

TableValuedFunctionExpression クラスの新しいインスタンスを作成します。

TableValuedFunctionExpression(String, IReadOnlyList<SqlExpression>, IEnumerable<IAnnotation>)

TableValuedFunctionExpression クラスの新しいインスタンスを作成します。

TableValuedFunctionExpression(String, String, IReadOnlyList<SqlExpression>, IEnumerable<IAnnotation>)

TableValuedFunctionExpression クラスの新しいインスタンスを作成します。

TableValuedFunctionExpression(String, String, String, Boolean, IReadOnlyList<SqlExpression>, IEnumerable<IAnnotation>)

TableValuedFunctionExpression クラスの新しいインスタンスを作成します。

TableValuedFunctionExpression(IStoreFunction, IReadOnlyList<SqlExpression>)

TableValuedFunctionExpression クラスの新しいインスタンスを作成します。

public TableValuedFunctionExpression (Microsoft.EntityFrameworkCore.Metadata.IStoreFunction storeFunction, System.Collections.Generic.IReadOnlyList<Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression> arguments);
new Microsoft.EntityFrameworkCore.Query.SqlExpressions.TableValuedFunctionExpression : Microsoft.EntityFrameworkCore.Metadata.IStoreFunction * System.Collections.Generic.IReadOnlyList<Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression> -> Microsoft.EntityFrameworkCore.Query.SqlExpressions.TableValuedFunctionExpression
Public Sub New (storeFunction As IStoreFunction, arguments As IReadOnlyList(Of SqlExpression))

パラメーター

storeFunction
IStoreFunction

この関数に IStoreFunction 関連付けられている 。

arguments
IReadOnlyList<SqlExpression>

関数の引数。

適用対象

TableValuedFunctionExpression(String, IReadOnlyList<SqlExpression>, IEnumerable<IAnnotation>)

TableValuedFunctionExpression クラスの新しいインスタンスを作成します。

public TableValuedFunctionExpression (string name, System.Collections.Generic.IReadOnlyList<Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression> arguments, System.Collections.Generic.IEnumerable<Microsoft.EntityFrameworkCore.Infrastructure.IAnnotation>? annotations = default);
new Microsoft.EntityFrameworkCore.Query.SqlExpressions.TableValuedFunctionExpression : string * System.Collections.Generic.IReadOnlyList<Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression> * seq<Microsoft.EntityFrameworkCore.Infrastructure.IAnnotation> -> Microsoft.EntityFrameworkCore.Query.SqlExpressions.TableValuedFunctionExpression
Public Sub New (name As String, arguments As IReadOnlyList(Of SqlExpression), Optional annotations As IEnumerable(Of IAnnotation) = Nothing)

パラメーター

name
String

関数の名前です。

arguments
IReadOnlyList<SqlExpression>

関数の引数。

annotations
IEnumerable<IAnnotation>

この式に関連付けられている注釈のコレクション。

適用対象

TableValuedFunctionExpression(String, String, IReadOnlyList<SqlExpression>, IEnumerable<IAnnotation>)

TableValuedFunctionExpression クラスの新しいインスタンスを作成します。

public TableValuedFunctionExpression (string alias, string name, System.Collections.Generic.IReadOnlyList<Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression> arguments, System.Collections.Generic.IEnumerable<Microsoft.EntityFrameworkCore.Infrastructure.IAnnotation>? annotations = default);
new Microsoft.EntityFrameworkCore.Query.SqlExpressions.TableValuedFunctionExpression : string * string * System.Collections.Generic.IReadOnlyList<Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression> * seq<Microsoft.EntityFrameworkCore.Infrastructure.IAnnotation> -> Microsoft.EntityFrameworkCore.Query.SqlExpressions.TableValuedFunctionExpression
Public Sub New (alias As String, name As String, arguments As IReadOnlyList(Of SqlExpression), Optional annotations As IEnumerable(Of IAnnotation) = Nothing)

パラメーター

alias
String

テーブル ソースの文字列エイリアス。

name
String

関数の名前です。

arguments
IReadOnlyList<SqlExpression>

関数の引数。

annotations
IEnumerable<IAnnotation>

この式に関連付けられている注釈のコレクション。

適用対象

TableValuedFunctionExpression(String, String, String, Boolean, IReadOnlyList<SqlExpression>, IEnumerable<IAnnotation>)

TableValuedFunctionExpression クラスの新しいインスタンスを作成します。

protected TableValuedFunctionExpression (string alias, string name, string? schema, bool builtIn, System.Collections.Generic.IReadOnlyList<Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression> arguments, System.Collections.Generic.IEnumerable<Microsoft.EntityFrameworkCore.Infrastructure.IAnnotation>? annotations = default);
new Microsoft.EntityFrameworkCore.Query.SqlExpressions.TableValuedFunctionExpression : string * string * string * bool * System.Collections.Generic.IReadOnlyList<Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression> * seq<Microsoft.EntityFrameworkCore.Infrastructure.IAnnotation> -> Microsoft.EntityFrameworkCore.Query.SqlExpressions.TableValuedFunctionExpression
Protected Sub New (alias As String, name As String, schema As String, builtIn As Boolean, arguments As IReadOnlyList(Of SqlExpression), Optional annotations As IEnumerable(Of IAnnotation) = Nothing)

パラメーター

alias
String

テーブル ソースの文字列エイリアス。

name
String

関数の名前です。

schema
String

関数のスキーマ。

builtIn
Boolean

関数が組み込まれているかどうか。

arguments
IReadOnlyList<SqlExpression>

関数の引数。

annotations
IEnumerable<IAnnotation>

この式に関連付けられている注釈のコレクション。

適用対象