This is probably really simple, but I'm unable to find the solution.
What's the best way to do something like this in llblgen?
select acct.Firstname + ' ' + acct.Lastname as FullName from acct
llblgen 2.6 SQL Server 2008
Thanks
http://www.llblgen.com/documentation/2.6/Using%20the%20generated%20code/gencode_expressionsaggregates.htm#expressions
Field Expressions are what you are looking for.
Matt
MTrinder wrote: http://www.llblgen.com/documentation/2.6/Using%20the%20generated%20code/gencode_expressionsaggregates.htm#expressions Field Expressions are what you are looking for. Matt
MTrinder wrote:
Thank you, Matt.
Btw, it looks like there's a small typo there (under both self-servicing and adapter code)
(OrderDetailsFields.UnitPrice * OrderDetailsFields.Quantity)), 3);
That '3' should be a '2'
Good spot
We'll update the documentation.