I have yet another question
The specified type member 'Name' is not supported in LINQ to Entities. Only initializers, entity members, and entity navigation properties are supported.
is the error I get when doing this
BindableList<Customer> _bl = new BindableList<Customer>();
BindingSource _bs = new BindingSource();
_bs.DataSource = _bl;
var qry =_entityManager.Countries
==> .Where(c => c.Name.Contains(pValue));
_bl.ReplaceRange(qry.ToList());
what is the reason for this ? I cannot use "Name" as an entity property ?