Ejemplo n.º 1
0
 IList IListSource.GetList()
 {
     if (cachedList == null)
     {
         cachedList = BindingList.Create(context, this);
     }
     return(cachedList);
 }
Ejemplo n.º 2
0
 IList IListSource.GetList()
 {
     if (this.cachedList == null)
     {
         this.cachedList = BindingList.Create <T>(this.context, this);
     }
     return(this.cachedList);
 }
Ejemplo n.º 3
0
 internal IBindingList GetNewBindingList() => BindingList.Create <T>(context, this);
Ejemplo n.º 4
0
 public IBindingList GetNewBindingList()
 {
     return(BindingList.Create <TEntity>(this.context, this));
 }
Ejemplo n.º 5
0
 public IBindingList GetNewBindingList() => BindingList.Create(Context, this);
 internal IBindingList GetNewBindingList()
 {
     return(BindingList.Create <T>(this.context, this));
 }
Ejemplo n.º 7
0
 public IBindingList GetNewBindingList()
 {
     return(BindingList.Create <TEntity>(this.context, (IEnumerable <TEntity>) this));
 }