SqlFunctionExpression Constructeurs
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Surcharges
SqlFunctionExpression(String, Type)
- Source:
- SqlFunctionExpression.cs
- Source:
- SqlFunctionExpression.cs
Initialise une nouvelle instance de la classe SqlFunctionExpression.
public SqlFunctionExpression (string functionName, Type returnType);
new Microsoft.EntityFrameworkCore.Query.Expressions.SqlFunctionExpression : string * Type -> Microsoft.EntityFrameworkCore.Query.Expressions.SqlFunctionExpression
Public Sub New (functionName As String, returnType As Type)
Paramètres
- functionName
- String
Nom de la fonction.
- returnType
- Type
Type de retour.
S’applique à
SqlFunctionExpression(String, Type, Boolean)
- Source:
- SqlFunctionExpression.cs
Initialise une nouvelle instance de la classe SqlFunctionExpression.
public SqlFunctionExpression (string functionName, Type returnType, bool niladic);
new Microsoft.EntityFrameworkCore.Query.Expressions.SqlFunctionExpression : string * Type * bool -> Microsoft.EntityFrameworkCore.Query.Expressions.SqlFunctionExpression
Public Sub New (functionName As String, returnType As Type, niladic As Boolean)
Paramètres
- functionName
- String
Nom de la fonction.
- returnType
- Type
Type de retour.
- niladic
- Boolean
Valeur indiquant si la fonction est niladicique.
S’applique à
SqlFunctionExpression(String, Type, IEnumerable<Expression>)
- Source:
- SqlFunctionExpression.cs
- Source:
- SqlFunctionExpression.cs
Initialise une nouvelle instance de la classe SqlFunctionExpression.
public SqlFunctionExpression (string functionName, Type returnType, System.Collections.Generic.IEnumerable<System.Linq.Expressions.Expression> arguments);
new Microsoft.EntityFrameworkCore.Query.Expressions.SqlFunctionExpression : string * Type * seq<System.Linq.Expressions.Expression> -> Microsoft.EntityFrameworkCore.Query.Expressions.SqlFunctionExpression
Public Sub New (functionName As String, returnType As Type, arguments As IEnumerable(Of Expression))
Paramètres
- functionName
- String
Nom de la fonction.
- returnType
- Type
Type de retour.
- arguments
- IEnumerable<Expression>
Arguments.
S’applique à
SqlFunctionExpression(Expression, String, Type, Boolean)
- Source:
- SqlFunctionExpression.cs
Initialise une nouvelle instance de la classe SqlFunctionExpression.
public SqlFunctionExpression (System.Linq.Expressions.Expression instance, string functionName, Type returnType, bool niladic);
new Microsoft.EntityFrameworkCore.Query.Expressions.SqlFunctionExpression : System.Linq.Expressions.Expression * string * Type * bool -> Microsoft.EntityFrameworkCore.Query.Expressions.SqlFunctionExpression
Public Sub New (instance As Expression, functionName As String, returnType As Type, niladic As Boolean)
Paramètres
- instance
- Expression
Le instance sur lequel la fonction est appelée.
- functionName
- String
Nom de la fonction.
- returnType
- Type
Type de retour.
- niladic
- Boolean
Valeur indiquant si la fonction est niladicique.
S’applique à
SqlFunctionExpression(Expression, String, Type, IEnumerable<Expression>)
- Source:
- SqlFunctionExpression.cs
- Source:
- SqlFunctionExpression.cs
Initialise une nouvelle instance de la classe SqlFunctionExpression.
public SqlFunctionExpression (System.Linq.Expressions.Expression instance, string functionName, Type returnType, System.Collections.Generic.IEnumerable<System.Linq.Expressions.Expression> arguments);
new Microsoft.EntityFrameworkCore.Query.Expressions.SqlFunctionExpression : System.Linq.Expressions.Expression * string * Type * seq<System.Linq.Expressions.Expression> -> Microsoft.EntityFrameworkCore.Query.Expressions.SqlFunctionExpression
Public Sub New (instance As Expression, functionName As String, returnType As Type, arguments As IEnumerable(Of Expression))
Paramètres
- instance
- Expression
Le instance sur lequel la fonction est appelée.
- functionName
- String
Nom de la fonction.
- returnType
- Type
Type de retour.
- arguments
- IEnumerable<Expression>
Arguments.
S’applique à
SqlFunctionExpression(String, Type, String, IEnumerable<Expression>)
- Source:
- SqlFunctionExpression.cs
- Source:
- SqlFunctionExpression.cs
Initialise une nouvelle instance de la classe SqlFunctionExpression.
public SqlFunctionExpression (string functionName, Type returnType, string schema, System.Collections.Generic.IEnumerable<System.Linq.Expressions.Expression> arguments);
new Microsoft.EntityFrameworkCore.Query.Expressions.SqlFunctionExpression : string * Type * string * seq<System.Linq.Expressions.Expression> -> Microsoft.EntityFrameworkCore.Query.Expressions.SqlFunctionExpression
Public Sub New (functionName As String, returnType As Type, schema As String, arguments As IEnumerable(Of Expression))
Paramètres
- functionName
- String
Nom de la fonction.
- returnType
- Type
Type de retour.
- schema
- String
Schéma dans lequel cette fonction existe, le cas échéant.
- arguments
- IEnumerable<Expression>
Arguments.
S’applique à
SqlFunctionExpression(String, Type, String, IEnumerable<Expression>, RelationalTypeMapping, IEnumerable<RelationalTypeMapping>)
- Source:
- SqlFunctionExpression.cs
Initialise une nouvelle instance de la classe SqlFunctionExpression.
public SqlFunctionExpression (string functionName, Type returnType, string schema, System.Collections.Generic.IEnumerable<System.Linq.Expressions.Expression> arguments, Microsoft.EntityFrameworkCore.Storage.RelationalTypeMapping resultTypeMapping = default, System.Collections.Generic.IEnumerable<Microsoft.EntityFrameworkCore.Storage.RelationalTypeMapping> argumentTypeMappings = default);
new Microsoft.EntityFrameworkCore.Query.Expressions.SqlFunctionExpression : string * Type * string * seq<System.Linq.Expressions.Expression> * Microsoft.EntityFrameworkCore.Storage.RelationalTypeMapping * seq<Microsoft.EntityFrameworkCore.Storage.RelationalTypeMapping> -> Microsoft.EntityFrameworkCore.Query.Expressions.SqlFunctionExpression
Public Sub New (functionName As String, returnType As Type, schema As String, arguments As IEnumerable(Of Expression), Optional resultTypeMapping As RelationalTypeMapping = Nothing, Optional argumentTypeMappings As IEnumerable(Of RelationalTypeMapping) = Nothing)
Paramètres
- functionName
- String
Nom de la fonction.
- returnType
- Type
Type de retour.
- schema
- String
Schéma dans lequel cette fonction existe, le cas échéant.
- arguments
- IEnumerable<Expression>
Arguments.
- resultTypeMapping
- RelationalTypeMapping
Mappage du type de résultat.
- argumentTypeMappings
- IEnumerable<RelationalTypeMapping>
Mappages de type pour chaque argument.
S’applique à
SqlFunctionExpression(Expression, String, Type, IEnumerable<Expression>, RelationalTypeMapping, RelationalTypeMapping, IEnumerable<RelationalTypeMapping>)
- Source:
- SqlFunctionExpression.cs
Initialise une nouvelle instance de la classe SqlFunctionExpression.
public SqlFunctionExpression (System.Linq.Expressions.Expression instance, string functionName, Type returnType, System.Collections.Generic.IEnumerable<System.Linq.Expressions.Expression> arguments, Microsoft.EntityFrameworkCore.Storage.RelationalTypeMapping resultTypeMapping = default, Microsoft.EntityFrameworkCore.Storage.RelationalTypeMapping instanceTypeMapping = default, System.Collections.Generic.IEnumerable<Microsoft.EntityFrameworkCore.Storage.RelationalTypeMapping> argumentTypeMappings = default);
new Microsoft.EntityFrameworkCore.Query.Expressions.SqlFunctionExpression : System.Linq.Expressions.Expression * string * Type * seq<System.Linq.Expressions.Expression> * Microsoft.EntityFrameworkCore.Storage.RelationalTypeMapping * Microsoft.EntityFrameworkCore.Storage.RelationalTypeMapping * seq<Microsoft.EntityFrameworkCore.Storage.RelationalTypeMapping> -> Microsoft.EntityFrameworkCore.Query.Expressions.SqlFunctionExpression
Public Sub New (instance As Expression, functionName As String, returnType As Type, arguments As IEnumerable(Of Expression), Optional resultTypeMapping As RelationalTypeMapping = Nothing, Optional instanceTypeMapping As RelationalTypeMapping = Nothing, Optional argumentTypeMappings As IEnumerable(Of RelationalTypeMapping) = Nothing)
Paramètres
- instance
- Expression
Le instance sur lequel la fonction est appelée.
- functionName
- String
Nom de la fonction.
- returnType
- Type
Type de retour.
- arguments
- IEnumerable<Expression>
Arguments.
- resultTypeMapping
- RelationalTypeMapping
Mappage du type de résultat.
- instanceTypeMapping
- RelationalTypeMapping
Mappage de type instance.
- argumentTypeMappings
- IEnumerable<RelationalTypeMapping>
Mappages de type pour chaque argument.