I was surprised to know that LLBLGen EntityCollection<T> does not inherit from List<T>. I think this is one of the most important feature which we were all surpsied to know the product does not support.
What is the best way to code like this.
DataAccessAdapter adapter = new DataAccessAdapter();
EntityCollection<ShopEN> shopList = new EntityCollection<ShopEN>();
adapter.FetchEntityCollection(shopList, null);
ShopEN shop = new ShopEN(1004);
adapter.FetchEntity(shop);
lookupHyperLinkEdit1.DataSource = shopList;
lookupHyperLinkEdit1.SelectedIndex = **shopList.FindIndex(delegate (ShopEN item) { return item.IdShop = shop.IdShop});
**