Freigeben über


HistoryOperation-Konstruktor

[Diese Seite bezieht sich auf Entity Framework Version 6. Die neueste Version ist als 'Entity Framework' NuGet-Paket verfügbar. Weitere Informationen zu Entity Framework finden Sie unter msdn.com/data/ef.]

Initialisiert eine neue Instanz der HistoryOperation-Klasse. Entity Framework-Migrations-APIs wurden nicht für das Akzeptieren von Eingaben aus nicht vertrauenswürdigen Quellen (z. B. vom Endbenutzer einer Anwendung) entwickelt. Wenn Eingaben aus solchen Quellen akzeptiert werden sollen, müssen diese vor der Übergabe an die APIs überprüft werden, um einen Schutz vor SQL-Injection-Angriffen und anderen Gefahren sicherzustellen.

Namespace:  System.Data.Entity.Migrations.Model
Assembly:  EntityFramework (in EntityFramework.dll)

Syntax

'Declaration
<SuppressMessageAttribute("Microsoft.Design", "CA1026:DefaultParametersShouldNotBeUsed")> _
Public Sub New ( _
    commandTrees As IList(Of DbModificationCommandTree), _
    anonymousArguments As Object _
)
'Usage
Dim commandTrees As IList(Of DbModificationCommandTree)
Dim anonymousArguments As Object 

Dim instance As New HistoryOperation(commandTrees, _
    anonymousArguments)
[SuppressMessageAttribute("Microsoft.Design", "CA1026:DefaultParametersShouldNotBeUsed")]
public HistoryOperation(
    IList<DbModificationCommandTree> commandTrees,
    Object anonymousArguments
)
[SuppressMessageAttribute(L"Microsoft.Design", L"CA1026:DefaultParametersShouldNotBeUsed")]
public:
HistoryOperation(
    IList<DbModificationCommandTree^>^ commandTrees, 
    Object^ anonymousArguments
)
[<SuppressMessageAttribute("Microsoft.Design", "CA1026:DefaultParametersShouldNotBeUsed")>]
new : 
        commandTrees:IList<DbModificationCommandTree> * 
        anonymousArguments:Object -> HistoryOperation
public function HistoryOperation(
    commandTrees : IList<DbModificationCommandTree>, 
    anonymousArguments : Object
)

Parameter

  • anonymousArguments
    Typ: System.Object
    Verwenden Sie Syntax für anonyme Typen zum Angeben von Argumenten, z. B. ' new { SampleArgument = "MyValue" }'.

Siehe auch

Verweis

HistoryOperation Klasse

System.Data.Entity.Migrations.Model-Namespace