DbContext.Entry 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
多載
Entry(Object) |
DbEntityEntry取得指定實體的 物件,提供實體相關資訊的存取權,以及對實體執行動作的能力。 |
Entry<TEntity>(TEntity) |
DbEntityEntry<TEntity>取得指定實體的 物件,提供實體相關資訊的存取權,以及對實體執行動作的能力。 |
Entry(Object)
DbEntityEntry取得指定實體的 物件,提供實體相關資訊的存取權,以及對實體執行動作的能力。
public System.Data.Entity.Infrastructure.DbEntityEntry Entry (object entity);
member this.Entry : obj -> System.Data.Entity.Infrastructure.DbEntityEntry
Public Function Entry (entity As Object) As DbEntityEntry
參數
- entity
- Object
實體。
傳回
實體的項目。
適用於
Entry<TEntity>(TEntity)
DbEntityEntry<TEntity>取得指定實體的 物件,提供實體相關資訊的存取權,以及對實體執行動作的能力。
public System.Data.Entity.Infrastructure.DbEntityEntry<TEntity> Entry<TEntity> (TEntity entity) where TEntity : class;
member this.Entry : 'Entity -> System.Data.Entity.Infrastructure.DbEntityEntry<'Entity (requires 'Entity : null)> (requires 'Entity : null)
Public Function Entry(Of TEntity As Class) (entity As TEntity) As DbEntityEntry(Of TEntity)
類型參數
- TEntity
實體的型別。
參數
- entity
- TEntity
實體。
傳回
實體的項目。