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