SqlFunctionExpression Konstruktory
Definice
Důležité
Některé informace platí pro předběžně vydaný produkt, který se může zásadně změnit, než ho výrobce nebo autor vydá. Microsoft neposkytuje žádné záruky, výslovné ani předpokládané, týkající se zde uváděných informací.
Přetížení
SqlFunctionExpression(String, Type)
- Zdroj:
- SqlFunctionExpression.cs
- Zdroj:
- SqlFunctionExpression.cs
Inicializuje novou instanci SqlFunctionExpression třídy.
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)
Parametry
- functionName
- String
Název funkce
- returnType
- Type
Návratový typ.
Platí pro
SqlFunctionExpression(String, Type, Boolean)
- Zdroj:
- SqlFunctionExpression.cs
Inicializuje novou instanci SqlFunctionExpression třídy.
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)
Parametry
- functionName
- String
Název funkce
- returnType
- Type
Návratový typ.
- niladic
- Boolean
Hodnota označující, zda je funkce niladická.
Platí pro
SqlFunctionExpression(String, Type, IEnumerable<Expression>)
- Zdroj:
- SqlFunctionExpression.cs
- Zdroj:
- SqlFunctionExpression.cs
Inicializuje novou instanci SqlFunctionExpression třídy.
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))
Parametry
- functionName
- String
Název funkce
- returnType
- Type
Návratový typ.
- arguments
- IEnumerable<Expression>
Argumenty.
Platí pro
SqlFunctionExpression(Expression, String, Type, Boolean)
- Zdroj:
- SqlFunctionExpression.cs
Inicializuje novou instanci SqlFunctionExpression třídy.
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)
Parametry
- instance
- Expression
Instance, ve které je funkce volána.
- functionName
- String
Název funkce
- returnType
- Type
Návratový typ.
- niladic
- Boolean
Hodnota označující, zda je funkce niladická.
Platí pro
SqlFunctionExpression(Expression, String, Type, IEnumerable<Expression>)
- Zdroj:
- SqlFunctionExpression.cs
- Zdroj:
- SqlFunctionExpression.cs
Inicializuje novou instanci SqlFunctionExpression třídy.
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))
Parametry
- instance
- Expression
Instance, ve které je funkce volána.
- functionName
- String
Název funkce
- returnType
- Type
Návratový typ.
- arguments
- IEnumerable<Expression>
Argumenty.
Platí pro
SqlFunctionExpression(String, Type, String, IEnumerable<Expression>)
- Zdroj:
- SqlFunctionExpression.cs
- Zdroj:
- SqlFunctionExpression.cs
Inicializuje novou instanci SqlFunctionExpression třídy.
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))
Parametry
- functionName
- String
Název funkce
- returnType
- Type
Návratový typ.
- schema
- String
Schéma, ve které tato funkce existuje, pokud existuje.
- arguments
- IEnumerable<Expression>
Argumenty.
Platí pro
SqlFunctionExpression(String, Type, String, IEnumerable<Expression>, RelationalTypeMapping, IEnumerable<RelationalTypeMapping>)
- Zdroj:
- SqlFunctionExpression.cs
Inicializuje novou instanci SqlFunctionExpression třídy.
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)
Parametry
- functionName
- String
Název funkce
- returnType
- Type
Návratový typ.
- schema
- String
Schéma, ve které tato funkce existuje, pokud existuje.
- arguments
- IEnumerable<Expression>
Argumenty.
- resultTypeMapping
- RelationalTypeMapping
Mapování typu výsledku
- argumentTypeMappings
- IEnumerable<RelationalTypeMapping>
Mapování typů pro každý argument
Platí pro
SqlFunctionExpression(Expression, String, Type, IEnumerable<Expression>, RelationalTypeMapping, RelationalTypeMapping, IEnumerable<RelationalTypeMapping>)
- Zdroj:
- SqlFunctionExpression.cs
Inicializuje novou instanci SqlFunctionExpression třídy.
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)
Parametry
- instance
- Expression
Instance, ve které je funkce volána.
- functionName
- String
Název funkce
- returnType
- Type
Návratový typ.
- arguments
- IEnumerable<Expression>
Argumenty.
- resultTypeMapping
- RelationalTypeMapping
Mapování typu výsledku
- instanceTypeMapping
- RelationalTypeMapping
Mapování typu instance
- argumentTypeMappings
- IEnumerable<RelationalTypeMapping>
Mapování typů pro každý argument
Platí pro
Entity Framework