Hello,
I have the following code:
ResultsetFields fields = new ResultsetFields(1);
fields.DefineField(TyreFields.Height, 0);
DataTable results = new DataTable();
LLBLDataAccessAdapter.Instance.Adapter.FetchTypedList(fields, results, null);
How can I apply DISTINCT on this field? Basically I need to do a "select distinct height from tyre". If it's not possible with ResultsetFields, is there a way to achieve this with LLBL v2.6?
Thanks