ITable.AttachAll 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
以已修改或未修改的狀態,將集合的所有實體附加至 DataContext。
多載
AttachAll(IEnumerable) |
以已修改或未修改的狀態,將集合的所有實體附加至 DataContext。 |
AttachAll(IEnumerable, Boolean) |
以已修改或未修改的狀態,將集合的所有實體附加至 DataContext。 |
AttachAll(IEnumerable)
以已修改或未修改的狀態,將集合的所有實體附加至 DataContext。
public:
void AttachAll(System::Collections::IEnumerable ^ entities);
public void AttachAll (System.Collections.IEnumerable entities);
abstract member AttachAll : System.Collections.IEnumerable -> unit
Public Sub AttachAll (entities As IEnumerable)
參數
- entities
- IEnumerable
實體的集合。
備註
如需如何使用此方法的詳細資訊,請參閱多層式應用程式中的數據擷取和 CUD 作業 (LINQ to SQL) 。
適用於
AttachAll(IEnumerable, Boolean)
以已修改或未修改的狀態,將集合的所有實體附加至 DataContext。
public:
void AttachAll(System::Collections::IEnumerable ^ entities, bool asModified);
public void AttachAll (System.Collections.IEnumerable entities, bool asModified);
abstract member AttachAll : System.Collections.IEnumerable * bool -> unit
Public Sub AttachAll (entities As IEnumerable, asModified As Boolean)
參數
- entities
- IEnumerable
實體的集合。
- asModified
- Boolean
true
表示以修改的方式附加實體 (Entity)。
備註
如需如何使用此方法的詳細資訊,請參閱多層式應用程式中的數據擷取和 CUD 作業 (LINQ to SQL) 。