I get the following Exceptoin even though it builds sucessfully.
"No selectList specified in selectList.
Parameter name: selectList"
I have a EmpPhone Typed List and i am trying show it in datagrd.
My code:
IPredicateExpression filter = new PredicateExpression();
filter.Add(VEmployeeFields.EmpId== 4);
EmpPhoneTypedList ep= new EmpPhoneTypedList();
DataAccessAdapter adapter = new DataAccessAdapter();
adapter.FetchTypedList(ep,filter); ----here is where i get the exception
what could this mean?