Condividi tramite


LocalView<TEntity>.IListSource.GetList Metodo

Definizione

Questo metodo viene chiamato dai framework di data binding quando si tenta di associare i dati direttamente a un oggetto 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

Restituisce

Non restituisce mai, genera sempre un'eccezione.

Implementazioni

Eccezioni

Sempre generato.

Commenti

Questa implementazione genera sempre un'eccezione perché LocalView<TEntity> non mantiene un elenco ordinato con indici. Chiamare ToObservableCollection() invece per l'associazione WPF o ToBindingList() per WinForms.

Si applica a