Hi All
The following code is from LLBLGen Pro's documentation that tells us how to do a "select distinct(field).." kind of this using Fill().
OrderCustomerTypedList orderCustomer = new OrderCustomerTypedList();
IPredicateExpression filter = new PredicateExpression(
PredicateFactory.CompareValue(CustomerFieldIndex.Country, ComparisonOperator.Equal, "Brazil"));
ISortExpression sorter = new SortExpression(
SortClauseFactory.Create(OrderFieldIndex.Freight, SortOperator.Ascending));
// Set allowDuplicates to true, because we sort on a field that is not in our resultset and we use SqlServer.
orderCustomer.Fill(0, sorter, true, filter);
But I can't find the typelist (QualificationTypedList) class for the entity that I am using (Qualification).
Is there any alternative?
Thanks.