Sdílet prostřednictvím


ModificationCommand Konstruktory

Definice

Přetížení

ModificationCommand(ModificationCommandParameters)

Inicializuje novou ModificationCommand instanci.

ModificationCommand(NonTrackedModificationCommandParameters)

Inicializuje novou ModificationCommand instanci.

ModificationCommand(String, String, IReadOnlyList<ColumnModification>)

Inicializuje novou ModificationCommand instanci.

ModificationCommand(String, String, IReadOnlyList<ColumnModification>, Boolean)

Inicializuje novou ModificationCommand instanci.

ModificationCommand(String, String, Func<String>, Func<IProperty,IRelationalPropertyAnnotations>)
ModificationCommand(String, String, Func<String>, Boolean, IComparer<IUpdateEntry>)

Inicializuje novou ModificationCommand instanci.

ModificationCommand(ModificationCommandParameters)

Inicializuje novou ModificationCommand instanci.

public ModificationCommand (in Microsoft.EntityFrameworkCore.Update.ModificationCommandParameters modificationCommandParameters);
new Microsoft.EntityFrameworkCore.Update.ModificationCommand : ModificationCommandParameters -> Microsoft.EntityFrameworkCore.Update.ModificationCommand
Public Sub New (ByRef modificationCommandParameters As ModificationCommandParameters)

Parametry

modificationCommandParameters
ModificationCommandParameters

Parametry vytváření.

Platí pro

ModificationCommand(NonTrackedModificationCommandParameters)

Inicializuje novou ModificationCommand instanci.

public ModificationCommand (in Microsoft.EntityFrameworkCore.Update.NonTrackedModificationCommandParameters modificationCommandParameters);
new Microsoft.EntityFrameworkCore.Update.ModificationCommand : NonTrackedModificationCommandParameters -> Microsoft.EntityFrameworkCore.Update.ModificationCommand
Public Sub New (ByRef modificationCommandParameters As NonTrackedModificationCommandParameters)

Parametry

modificationCommandParameters
NonTrackedModificationCommandParameters

Parametry vytváření.

Platí pro

ModificationCommand(String, String, IReadOnlyList<ColumnModification>)

Inicializuje novou ModificationCommand instanci.

public ModificationCommand (string name, string schema, System.Collections.Generic.IReadOnlyList<Microsoft.EntityFrameworkCore.Update.ColumnModification> columnModifications);
new Microsoft.EntityFrameworkCore.Update.ModificationCommand : string * string * System.Collections.Generic.IReadOnlyList<Microsoft.EntityFrameworkCore.Update.ColumnModification> -> Microsoft.EntityFrameworkCore.Update.ModificationCommand
Public Sub New (name As String, schema As String, columnModifications As IReadOnlyList(Of ColumnModification))

Parametry

name
String

Název tabulky obsahující data, která se mají upravit.

schema
String

Schéma obsahující tabulku nebo null použít výchozí schéma.

columnModifications
IReadOnlyList<ColumnModification>

Seznam položek potřebných ColumnModificationk vložení, aktualizaci nebo odstranění.

Platí pro

ModificationCommand(String, String, IReadOnlyList<ColumnModification>, Boolean)

Inicializuje novou ModificationCommand instanci.

public ModificationCommand (string name, string schema, System.Collections.Generic.IReadOnlyList<Microsoft.EntityFrameworkCore.Update.ColumnModification> columnModifications, bool sensitiveLoggingEnabled);
new Microsoft.EntityFrameworkCore.Update.ModificationCommand : string * string * System.Collections.Generic.IReadOnlyList<Microsoft.EntityFrameworkCore.Update.ColumnModification> * bool -> Microsoft.EntityFrameworkCore.Update.ModificationCommand
Public Sub New (name As String, schema As String, columnModifications As IReadOnlyList(Of ColumnModification), sensitiveLoggingEnabled As Boolean)

Parametry

name
String

Název tabulky obsahující data, která se mají upravit.

schema
String

Schéma obsahující tabulku nebo null použít výchozí schéma.

columnModifications
IReadOnlyList<ColumnModification>

Seznam položek potřebných ColumnModificationk vložení, aktualizaci nebo odstranění.

sensitiveLoggingEnabled
Boolean

Označuje, jestli je možné protokolovat potenciálně citlivá data (např. hodnoty databáze).

Platí pro

ModificationCommand(String, String, Func<String>, Func<IProperty,IRelationalPropertyAnnotations>)

public ModificationCommand (string name, string schema, Func<string> generateParameterName, Func<Microsoft.EntityFrameworkCore.Metadata.IProperty,Microsoft.EntityFrameworkCore.Metadata.IRelationalPropertyAnnotations> getPropertyExtensions);
new Microsoft.EntityFrameworkCore.Update.ModificationCommand : string * string * Func<string> * Func<Microsoft.EntityFrameworkCore.Metadata.IProperty, Microsoft.EntityFrameworkCore.Metadata.IRelationalPropertyAnnotations> -> Microsoft.EntityFrameworkCore.Update.ModificationCommand
Public Sub New (name As String, schema As String, generateParameterName As Func(Of String), getPropertyExtensions As Func(Of IProperty, IRelationalPropertyAnnotations))

Parametry

name
String
schema
String
generateParameterName
Func<String>

Platí pro

ModificationCommand(String, String, Func<String>, Boolean, IComparer<IUpdateEntry>)

Inicializuje novou ModificationCommand instanci.

public ModificationCommand (string name, string schema, Func<string> generateParameterName, bool sensitiveLoggingEnabled, System.Collections.Generic.IComparer<Microsoft.EntityFrameworkCore.Update.IUpdateEntry> comparer);
new Microsoft.EntityFrameworkCore.Update.ModificationCommand : string * string * Func<string> * bool * System.Collections.Generic.IComparer<Microsoft.EntityFrameworkCore.Update.IUpdateEntry> -> Microsoft.EntityFrameworkCore.Update.ModificationCommand
Public Sub New (name As String, schema As String, generateParameterName As Func(Of String), sensitiveLoggingEnabled As Boolean, comparer As IComparer(Of IUpdateEntry))

Parametry

name
String

Název tabulky obsahující data, která se mají upravit.

schema
String

Schéma obsahující tabulku nebo null použít výchozí schéma.

generateParameterName
Func<String>

Delegát, který vygeneruje názvy parametrů.

sensitiveLoggingEnabled
Boolean

Označuje, jestli je možné protokolovat potenciálně citlivá data (např. hodnoty databáze).

Platí pro