共用方式為


LocalView<TEntity>.IListSource.GetList 方法

定義

嘗試將資料系結直接系結至 LocalView<TEntity> 時,資料系結架構會呼叫這個方法。

System.Collections.IList IListSource.GetList ();
abstract member System.ComponentModel.IListSource.GetList : unit -> System.Collections.IList
override this.System.ComponentModel.IListSource.GetList : unit -> System.Collections.IList
Function GetList () As IList Implements IListSource.GetList

傳回

永不傳回,一律會擲回例外狀況。

實作

例外狀況

一律擲回。

備註

此實作一律會擲回例外狀況,因為 LocalView<TEntity> 不會維護具有索引的已排序清單。 而是呼叫 ToObservableCollection() WPF 系結或 ToBindingList() WinForms。

適用於