Bagikan melalui


CaseExpression Konstruktor

Definisi

Overload

CaseExpression(CaseWhenClause[])

Sumber:
CaseExpression.cs

Menginisialisasi instans baru kelas CaseExpression.

public CaseExpression(params Microsoft.EntityFrameworkCore.Query.Expressions.CaseWhenClause[] whenClauses);
new Microsoft.EntityFrameworkCore.Query.Expressions.CaseExpression : Microsoft.EntityFrameworkCore.Query.Expressions.CaseWhenClause[] -> Microsoft.EntityFrameworkCore.Query.Expressions.CaseExpression
Public Sub New (ParamArray whenClauses As CaseWhenClause())

Parameter

whenClauses
CaseWhenClause[]

Daftar klausa kapan.

Berlaku untuk

CaseExpression(IReadOnlyList<CaseWhenClause>, Expression)

Sumber:
CaseExpression.cs

Menginisialisasi instans baru kelas CaseExpression.

public CaseExpression(System.Collections.Generic.IReadOnlyList<Microsoft.EntityFrameworkCore.Query.Expressions.CaseWhenClause> whenClauses, System.Linq.Expressions.Expression elseResult);
new Microsoft.EntityFrameworkCore.Query.Expressions.CaseExpression : System.Collections.Generic.IReadOnlyList<Microsoft.EntityFrameworkCore.Query.Expressions.CaseWhenClause> * System.Linq.Expressions.Expression -> Microsoft.EntityFrameworkCore.Query.Expressions.CaseExpression
Public Sub New (whenClauses As IReadOnlyList(Of CaseWhenClause), elseResult As Expression)

Parameter

whenClauses
IReadOnlyList<CaseWhenClause>

Daftar klausa kapan.

elseResult
Expression

Ekspresi hasil lainnya.

Berlaku untuk

CaseExpression(Expression, CaseWhenClause[])

Sumber:
CaseExpression.cs

Menginisialisasi instans baru kelas CaseExpression.

public CaseExpression(System.Linq.Expressions.Expression operand, params Microsoft.EntityFrameworkCore.Query.Expressions.CaseWhenClause[] whenClauses);
new Microsoft.EntityFrameworkCore.Query.Expressions.CaseExpression : System.Linq.Expressions.Expression * Microsoft.EntityFrameworkCore.Query.Expressions.CaseWhenClause[] -> Microsoft.EntityFrameworkCore.Query.Expressions.CaseExpression
Public Sub New (operand As Expression, ParamArray whenClauses As CaseWhenClause())

Parameter

operand
Expression

Ekspresi operand huruf besar/kecil.

whenClauses
CaseWhenClause[]

Daftar klausa kapan.

Berlaku untuk

CaseExpression(Expression, IReadOnlyList<CaseWhenClause>, Expression)

Sumber:
CaseExpression.cs

Menginisialisasi instans baru kelas CaseExpression.

public CaseExpression(System.Linq.Expressions.Expression operand, System.Collections.Generic.IReadOnlyList<Microsoft.EntityFrameworkCore.Query.Expressions.CaseWhenClause> whenClauses, System.Linq.Expressions.Expression elseResult);
new Microsoft.EntityFrameworkCore.Query.Expressions.CaseExpression : System.Linq.Expressions.Expression * System.Collections.Generic.IReadOnlyList<Microsoft.EntityFrameworkCore.Query.Expressions.CaseWhenClause> * System.Linq.Expressions.Expression -> Microsoft.EntityFrameworkCore.Query.Expressions.CaseExpression
Public Sub New (operand As Expression, whenClauses As IReadOnlyList(Of CaseWhenClause), elseResult As Expression)

Parameter

operand
Expression

Ekspresi operand huruf besar/kecil.

whenClauses
IReadOnlyList<CaseWhenClause>

Daftar klausa kapan.

elseResult
Expression

Ekspresi hasil lainnya.

Berlaku untuk