Is it possible to do in LLBL something like:
select field1, field2, func1(f3) from entity1.....
and get the entity with field f3 mapped as a function in one query or you will end up with 2 queries, one for entity and on to get the result of the function for field f3 like:
select field1, field2, f3 from entity1
and then
select func1(f3)
thanks