MTrinder wrote:
Sorry, I'm still not entirly sure what you are trying to do, and if you are using Typed Lists, Dynamic Lists, or Entities...?
Please could you post a sample of the code that you are using - it might give us a better idea of how to help you.
Thanks
Matt
it is a dynamic list.
say it has five fields: entity1.field1, entity2.field2, entity2.field3, entity3.field4, entity3.field5
i want to add one more field into this resultset, say field6 with a staticValue.
so the generated datatable will have the fields from field1 through field6, first five coming from several entities and the final will be a static value.
generated sql will be something like:
select entity1.field1, entity2.field2, entity2.field3, entity3.field4, entity3.field5, staticValue as field6 .....
hope its better this time.
-shane