SqlExpressionFactory.Function 方法

定义

重载

Function(String, String, IEnumerable<SqlExpression>, Type, RelationalTypeMapping)
已过时.

创建一个表示 SQL 树中的函数调用的新 SqlFunctionExpression

Function(String, String, IEnumerable<SqlExpression>, Boolean, IEnumerable<Boolean>, Type, RelationalTypeMapping)

创建一个表示 SQL 树中的函数调用的新 SqlFunctionExpression

Function(String, IEnumerable<SqlExpression>, Boolean, IEnumerable<Boolean>, Type, RelationalTypeMapping)

创建一个表示 SQL 树中的函数调用的新 SqlFunctionExpression

Function(SqlExpression, String, IEnumerable<SqlExpression>, Type, RelationalTypeMapping)
已过时.

创建一个表示 SQL 树中的函数调用的新 SqlFunctionExpression

Function(SqlExpression, String, IEnumerable<SqlExpression>, Boolean, Boolean, IEnumerable<Boolean>, Type, RelationalTypeMapping)

创建一个表示 SQL 树中的函数调用的新 SqlFunctionExpression

Function(String, IEnumerable<SqlExpression>, Type, RelationalTypeMapping)
已过时.

创建一个表示 SQL 树中的函数调用的新 SqlFunctionExpression

Function(SqlExpression, String, Type, RelationalTypeMapping)
已过时.

创建一个表示 SQL 树中的函数调用的新 SqlFunctionExpression

Function(String, Type, RelationalTypeMapping)
已过时.

创建一个表示 SQL 树中的函数调用的新 SqlFunctionExpression

Function(String, String, Type, RelationalTypeMapping)
已过时.

创建一个表示 SQL 树中的函数调用的新 SqlFunctionExpression

Function(String, String, IEnumerable<SqlExpression>, Type, RelationalTypeMapping)

注意

Use overload that explicitly specifies value for 'argumentsPropagateNullability' argument.

创建一个表示 SQL 树中的函数调用的新 SqlFunctionExpression

public virtual Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlFunctionExpression Function (string schema, string name, System.Collections.Generic.IEnumerable<Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression> arguments, Type returnType, Microsoft.EntityFrameworkCore.Storage.RelationalTypeMapping typeMapping = default);
[System.Obsolete("Use overload that explicitly specifies value for 'argumentsPropagateNullability' argument.")]
public virtual Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlFunctionExpression Function (string schema, string name, System.Collections.Generic.IEnumerable<Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression> arguments, Type returnType, Microsoft.EntityFrameworkCore.Storage.RelationalTypeMapping typeMapping = default);
[System.Obsolete("Use overload that explicitly specifies value for 'argumentsPropagateNullability' argument.")]
public virtual Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlFunctionExpression Function (string? schema, string name, System.Collections.Generic.IEnumerable<Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression> arguments, Type returnType, Microsoft.EntityFrameworkCore.Storage.RelationalTypeMapping? typeMapping = default);

参数

schema
String

在其中定义函数的架构。

name
String

函数的名称。

arguments
IEnumerable<SqlExpression>

函数的参数。

returnType
Type

该表达式的 Type

typeMapping
RelationalTypeMapping

RelationalTypeMapping与表达式关联的 。

返回

表示 SQL 树中的函数调用的表达式。

实现

属性

适用于

Entity Framework Core 6.0 和其他版本
产品 版本 (已过时)
Entity Framework Core 3.0, 3.1 (5.0, 6.0)

Function(String, String, IEnumerable<SqlExpression>, Boolean, IEnumerable<Boolean>, Type, RelationalTypeMapping)

创建一个表示 SQL 树中的函数调用的新 SqlFunctionExpression

public virtual Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlFunctionExpression Function (string schema, string name, System.Collections.Generic.IEnumerable<Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression> arguments, bool nullable, System.Collections.Generic.IEnumerable<bool> argumentsPropagateNullability, Type returnType, Microsoft.EntityFrameworkCore.Storage.RelationalTypeMapping typeMapping = default);
public virtual Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlFunctionExpression Function (string? schema, string name, System.Collections.Generic.IEnumerable<Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression> arguments, bool nullable, System.Collections.Generic.IEnumerable<bool> argumentsPropagateNullability, Type returnType, Microsoft.EntityFrameworkCore.Storage.RelationalTypeMapping? typeMapping = default);

参数

schema
String

在其中定义函数的架构。

name
String

函数的名称。

arguments
IEnumerable<SqlExpression>

函数的参数。

nullable
Boolean

一个布尔值,指示此函数是否可以返回 null。

argumentsPropagateNullability
IEnumerable<Boolean>

指示单个参数是否将 null 传播到结果的布尔值列表。

returnType
Type

该表达式的 Type

typeMapping
RelationalTypeMapping

RelationalTypeMapping与表达式关联的 。

返回

表示 SQL 树中的函数调用的表达式。

实现

适用于

Entity Framework Core 8.0 和其他版本
产品 版本
Entity Framework Core 5.0, 6.0, 7.0, 8.0

Function(String, IEnumerable<SqlExpression>, Boolean, IEnumerable<Boolean>, Type, RelationalTypeMapping)

创建一个表示 SQL 树中的函数调用的新 SqlFunctionExpression

public virtual Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlFunctionExpression Function (string name, System.Collections.Generic.IEnumerable<Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression> arguments, bool nullable, System.Collections.Generic.IEnumerable<bool> argumentsPropagateNullability, Type returnType, Microsoft.EntityFrameworkCore.Storage.RelationalTypeMapping typeMapping = default);
public virtual Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlFunctionExpression Function (string name, System.Collections.Generic.IEnumerable<Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression> arguments, bool nullable, System.Collections.Generic.IEnumerable<bool> argumentsPropagateNullability, Type returnType, Microsoft.EntityFrameworkCore.Storage.RelationalTypeMapping? typeMapping = default);

参数

name
String

函数的名称。

arguments
IEnumerable<SqlExpression>

函数的参数。

nullable
Boolean

一个布尔值,指示此函数是否可以返回 null。

argumentsPropagateNullability
IEnumerable<Boolean>

指示单个参数是否将 null 传播到结果的布尔值列表。

returnType
Type

该表达式的 Type

typeMapping
RelationalTypeMapping

RelationalTypeMapping与表达式关联的 。

返回

表示 SQL 树中的函数调用的表达式。

实现

适用于

Entity Framework Core 8.0 和其他版本
产品 版本
Entity Framework Core 5.0, 6.0, 7.0, 8.0

Function(SqlExpression, String, IEnumerable<SqlExpression>, Type, RelationalTypeMapping)

注意

Use overload that explicitly specifies values for 'instancePropagatesNullability' and 'argumentsPropagateNullability' arguments.

创建一个表示 SQL 树中的函数调用的新 SqlFunctionExpression

public virtual Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlFunctionExpression Function (Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression instance, string name, System.Collections.Generic.IEnumerable<Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression> arguments, Type returnType, Microsoft.EntityFrameworkCore.Storage.RelationalTypeMapping typeMapping = default);
[System.Obsolete("Use overload that explicitly specifies values for 'instancePropagatesNullability' and 'argumentsPropagateNullability' arguments.")]
public virtual Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlFunctionExpression Function (Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression instance, string name, System.Collections.Generic.IEnumerable<Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression> arguments, Type returnType, Microsoft.EntityFrameworkCore.Storage.RelationalTypeMapping typeMapping = default);
[System.Obsolete("Use overload that explicitly specifies values for 'instancePropagatesNullability' and 'argumentsPropagateNullability' arguments.")]
public virtual Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlFunctionExpression Function (Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression instance, string name, System.Collections.Generic.IEnumerable<Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression> arguments, Type returnType, Microsoft.EntityFrameworkCore.Storage.RelationalTypeMapping? typeMapping = default);

参数

instance
SqlExpression

对其应用函数的表达式。

name
String

函数的名称。

arguments
IEnumerable<SqlExpression>

函数的参数。

returnType
Type

该表达式的 Type

typeMapping
RelationalTypeMapping

RelationalTypeMapping与表达式关联的 。

返回

表示 SQL 树中的函数调用的表达式。

实现

属性

适用于

Entity Framework Core 6.0 和其他版本
产品 版本 (已过时)
Entity Framework Core 3.0, 3.1 (5.0, 6.0)

Function(SqlExpression, String, IEnumerable<SqlExpression>, Boolean, Boolean, IEnumerable<Boolean>, Type, RelationalTypeMapping)

创建一个表示 SQL 树中的函数调用的新 SqlFunctionExpression

public virtual Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlFunctionExpression Function (Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression instance, string name, System.Collections.Generic.IEnumerable<Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression> arguments, bool nullable, bool instancePropagatesNullability, System.Collections.Generic.IEnumerable<bool> argumentsPropagateNullability, Type returnType, Microsoft.EntityFrameworkCore.Storage.RelationalTypeMapping typeMapping = default);
public virtual Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlFunctionExpression Function (Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression instance, string name, System.Collections.Generic.IEnumerable<Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression> arguments, bool nullable, bool instancePropagatesNullability, System.Collections.Generic.IEnumerable<bool> argumentsPropagateNullability, Type returnType, Microsoft.EntityFrameworkCore.Storage.RelationalTypeMapping? typeMapping = default);

参数

instance
SqlExpression

对其应用函数的表达式。

name
String

函数的名称。

arguments
IEnumerable<SqlExpression>

函数的参数。

nullable
Boolean

一个布尔值,指示此函数是否可以返回 null。

instancePropagatesNullability
Boolean

一个值,该值指示实例是否将 null 传播到结果。

argumentsPropagateNullability
IEnumerable<Boolean>

指示单个参数是否将 null 传播到结果的布尔值列表。

returnType
Type

该表达式的 Type

typeMapping
RelationalTypeMapping

RelationalTypeMapping与表达式关联的 。

返回

表示 SQL 树中的函数调用的表达式。

实现

适用于

Entity Framework Core 8.0 和其他版本
产品 版本
Entity Framework Core 5.0, 6.0, 7.0, 8.0

Function(String, IEnumerable<SqlExpression>, Type, RelationalTypeMapping)

注意

Use overload that explicitly specifies value for 'argumentsPropagateNullability' argument.

创建一个表示 SQL 树中的函数调用的新 SqlFunctionExpression

public virtual Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlFunctionExpression Function (string name, System.Collections.Generic.IEnumerable<Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression> arguments, Type returnType, Microsoft.EntityFrameworkCore.Storage.RelationalTypeMapping typeMapping = default);
[System.Obsolete("Use overload that explicitly specifies value for 'argumentsPropagateNullability' argument.")]
public virtual Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlFunctionExpression Function (string name, System.Collections.Generic.IEnumerable<Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression> arguments, Type returnType, Microsoft.EntityFrameworkCore.Storage.RelationalTypeMapping typeMapping = default);
[System.Obsolete("Use overload that explicitly specifies value for 'argumentsPropagateNullability' argument.")]
public virtual Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlFunctionExpression Function (string name, System.Collections.Generic.IEnumerable<Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression> arguments, Type returnType, Microsoft.EntityFrameworkCore.Storage.RelationalTypeMapping? typeMapping = default);

参数

name
String

函数的名称。

arguments
IEnumerable<SqlExpression>

函数的参数。

returnType
Type

该表达式的 Type

typeMapping
RelationalTypeMapping

RelationalTypeMapping与表达式关联的 。

返回

表示 SQL 树中的函数调用的表达式。

实现

属性

适用于

Entity Framework Core 6.0 和其他版本
产品 版本 (已过时)
Entity Framework Core 3.0, 3.1 (5.0, 6.0)

Function(SqlExpression, String, Type, RelationalTypeMapping)

注意

Use NiladicFunction method.

创建一个表示 SQL 树中的函数调用的新 SqlFunctionExpression

public virtual Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlFunctionExpression Function (Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression instance, string name, Type returnType, Microsoft.EntityFrameworkCore.Storage.RelationalTypeMapping typeMapping = default);
[System.Obsolete("Use NiladicFunction method.")]
public virtual Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlFunctionExpression Function (Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression instance, string name, Type returnType, Microsoft.EntityFrameworkCore.Storage.RelationalTypeMapping typeMapping = default);
[System.Obsolete("Use NiladicFunction method.")]
public virtual Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlFunctionExpression Function (Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression instance, string name, Type returnType, Microsoft.EntityFrameworkCore.Storage.RelationalTypeMapping? typeMapping = default);

参数

instance
SqlExpression

对其应用函数的表达式。

name
String

函数的名称。

returnType
Type

该表达式的 Type

typeMapping
RelationalTypeMapping

RelationalTypeMapping与表达式关联的 。

返回

表示 SQL 树中的函数调用的表达式。

实现

属性

适用于

Entity Framework Core 6.0 和其他版本
产品 版本 (已过时)
Entity Framework Core 3.0, 3.1 (5.0, 6.0)

Function(String, Type, RelationalTypeMapping)

注意

Use NiladicFunction method.

创建一个表示 SQL 树中的函数调用的新 SqlFunctionExpression

public virtual Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlFunctionExpression Function (string name, Type returnType, Microsoft.EntityFrameworkCore.Storage.RelationalTypeMapping typeMapping = default);
[System.Obsolete("Use NiladicFunction method.")]
public virtual Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlFunctionExpression Function (string name, Type returnType, Microsoft.EntityFrameworkCore.Storage.RelationalTypeMapping typeMapping = default);
[System.Obsolete("Use NiladicFunction method.")]
public virtual Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlFunctionExpression Function (string name, Type returnType, Microsoft.EntityFrameworkCore.Storage.RelationalTypeMapping? typeMapping = default);

参数

name
String

函数的名称。

returnType
Type

该表达式的 Type

typeMapping
RelationalTypeMapping

RelationalTypeMapping与表达式关联的 。

返回

表示 SQL 树中的函数调用的表达式。

实现

属性

适用于

Entity Framework Core 6.0 和其他版本
产品 版本 (已过时)
Entity Framework Core 3.0, 3.1 (5.0, 6.0)

Function(String, String, Type, RelationalTypeMapping)

注意

Use NiladicFunction method.

创建一个表示 SQL 树中的函数调用的新 SqlFunctionExpression

public virtual Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlFunctionExpression Function (string schema, string name, Type returnType, Microsoft.EntityFrameworkCore.Storage.RelationalTypeMapping typeMapping = default);
[System.Obsolete("Use NiladicFunction method.")]
public virtual Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlFunctionExpression Function (string schema, string name, Type returnType, Microsoft.EntityFrameworkCore.Storage.RelationalTypeMapping typeMapping = default);
[System.Obsolete("Use NiladicFunction method.")]
public virtual Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlFunctionExpression Function (string schema, string name, Type returnType, Microsoft.EntityFrameworkCore.Storage.RelationalTypeMapping? typeMapping = default);

参数

schema
String

在其中定义函数的架构。

name
String

函数的名称。

returnType
Type

该表达式的 Type

typeMapping
RelationalTypeMapping

RelationalTypeMapping与表达式关联的 。

返回

表示 SQL 树中的函数调用的表达式。

实现

属性

适用于

Entity Framework Core 6.0 和其他版本
产品 版本 (已过时)
Entity Framework Core 3.0, 3.1 (5.0, 6.0)