Freigeben über


ISqlExpressionFactory.Constant Methode

Definition

Überlädt

Constant(Object, RelationalTypeMapping)

Erstellt eine neue SqlConstantExpression , die eine Konstante in einer SQL-Struktur darstellt.

Constant(Object, Type, RelationalTypeMapping)

Erstellt eine neue SqlConstantExpression , die eine Konstante in einer SQL-Struktur darstellt.

Constant(Object, RelationalTypeMapping)

Erstellt eine neue SqlConstantExpression , die eine Konstante in einer SQL-Struktur darstellt.

public Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlConstantExpression Constant (object value, Microsoft.EntityFrameworkCore.Storage.RelationalTypeMapping typeMapping = default);
public Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlConstantExpression Constant (object? value, Microsoft.EntityFrameworkCore.Storage.RelationalTypeMapping? typeMapping = default);
abstract member Constant : obj * Microsoft.EntityFrameworkCore.Storage.RelationalTypeMapping -> Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlConstantExpression
Public Function Constant (value As Object, Optional typeMapping As RelationalTypeMapping = Nothing) As SqlConstantExpression

Parameter

value
Object

Ein Wert.

typeMapping
RelationalTypeMapping

Die RelationalTypeMapping dem Ausdruck zugeordnete.

Gibt zurück

Ein Ausdruck, der eine Konstante in einer SQL-Struktur darstellt.

Gilt für:

Constant(Object, Type, RelationalTypeMapping)

Erstellt eine neue SqlConstantExpression , die eine Konstante in einer SQL-Struktur darstellt.

public Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlConstantExpression Constant (object? value, Type type, Microsoft.EntityFrameworkCore.Storage.RelationalTypeMapping? typeMapping = default);
abstract member Constant : obj * Type * Microsoft.EntityFrameworkCore.Storage.RelationalTypeMapping -> Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlConstantExpression
Public Function Constant (value As Object, type As Type, Optional typeMapping As RelationalTypeMapping = Nothing) As SqlConstantExpression

Parameter

value
Object

Ein Wert.

type
Type

Der Typ für die Konstante. Nützlich, wenn der Wert NULL ist.

typeMapping
RelationalTypeMapping

Die RelationalTypeMapping dem Ausdruck zugeordnete.

Gibt zurück

Ein Ausdruck, der eine Konstante in einer SQL-Struktur darstellt.

Gilt für: