SqliteDbFunctionsExtensions.Substr Metodo
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Overload
Substr(DbFunctions, Byte[], Int32) |
Esegue il mapping alla funzione SQLite |
Substr(DbFunctions, Byte[], Int32, Int32) |
Esegue il mapping alla funzione substr SQLite che restituisce una sottomaschera del valore specificato. La sottomaschera inizia da |
Substr(DbFunctions, Byte[], Int32)
Esegue il mapping alla funzione SQLite substr
che restituisce una sottomaschera del valore specificato. La sottomaschera inizia da startIndex
e continua fino alla fine del valore.
public static byte[] Substr (this Microsoft.EntityFrameworkCore.DbFunctions _, byte[] bytes, int startIndex);
static member Substr : Microsoft.EntityFrameworkCore.DbFunctions * byte[] * int -> byte[]
<Extension()>
Public Function Substr (_ As DbFunctions, bytes As Byte(), startIndex As Integer) As Byte()
Parametri
Istanza di DbFunctions.
- bytes
- Byte[]
Valore binario.
- startIndex
- Int32
Indice iniziale in base 1. Se negativo, l'indice è relativo alla fine del valore.
Restituisce
Sottomaschera.
Commenti
Per altre informazioni ed esempi, vedere Funzioni di database e Accesso ai database SQLite con EF Core .
Si applica a
Substr(DbFunctions, Byte[], Int32, Int32)
Esegue il mapping alla funzione substr SQLite che restituisce una sottomaschera del valore specificato. La sottomaschera inizia da startIndex
e ha l'oggetto specificato length
.
public static byte[] Substr (this Microsoft.EntityFrameworkCore.DbFunctions _, byte[] bytes, int startIndex, int length);
static member Substr : Microsoft.EntityFrameworkCore.DbFunctions * byte[] * int * int -> byte[]
<Extension()>
Public Function Substr (_ As DbFunctions, bytes As Byte(), startIndex As Integer, length As Integer) As Byte()
Parametri
Istanza di DbFunctions.
- bytes
- Byte[]
Valore binario.
- startIndex
- Int32
Indice iniziale in base 1. Se negativo, l'indice è relativo alla fine del valore.
- length
- Int32
Lunghezza della sottomaschera. Se negativo, vengono restituiti byte precedenti startIndex
.
Restituisce
Sottomaschera.
Commenti
Per altre informazioni ed esempi, vedere Funzioni di database e Accesso ai database SQLite con EF Core .