LocalView<TEntity>.IListSource.GetList Método

Definición

Los marcos de enlace de datos llaman a este método al intentar enlazar datos directamente a .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

Devoluciones

Nunca se devuelve, siempre produce una excepción.

Implementaciones

Excepciones

Siempre se produce.

Comentarios

Esta implementación siempre produce una excepción, ya LocalView<TEntity> que no mantiene una lista ordenada con índices. En su lugar, llame a ToObservableCollection() para el enlace WPF o ToBindingList() para WinForms.

Se aplica a