Is there a way to return static column data, like the following SQL?
Select 'thisText' as Column1, firstName, lastName from Users?
I'm trying to add this Column1 to a dynamic typed list.
adapter.FetchTypedList(myEntityFields2, myDataTable, myFilter, 0, sort, true);
Is it possible to add the above Column1 to my EntityFields2 collection?