Freigeben über


TransactionContext.Transactions-Eigenschaft

[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.]

Ruft ein DbSet<TEntity> ab oder legt eines fest, das zum Schreiben und Lesen von TransactionRow-Instanzen verwendet werden kann.

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

Syntax

'Declaration
Public Overridable Property Transactions As IDbSet(Of TransactionRow)
    Get 
    Set
'Usage
Dim instance As TransactionContext 
Dim value As IDbSet(Of TransactionRow)

value = instance.Transactions

instance.Transactions = value
public virtual IDbSet<TransactionRow> Transactions { get; set; }
public:
virtual property IDbSet<TransactionRow^>^ Transactions {
    IDbSet<TransactionRow^>^ get ();
    void set (IDbSet<TransactionRow^>^ value);
}
abstract Transactions : IDbSet<TransactionRow> with get, set 
override Transactions : IDbSet<TransactionRow> with get, set
function get Transactions () : IDbSet<TransactionRow>
function set Transactions (value : IDbSet<TransactionRow>)

Eigenschaftswert

Typ: System.Data.Entity.IDbSet<TransactionRow>
Ein DbSet<TEntity>, der zum Lesen und Schreiben von TransactionRow-Instanzen verwendet werden kann.

Siehe auch

Verweis

TransactionContext Klasse

System.Data.Entity.Infrastructure-Namespace