views:

56

answers:

0

I have a dynamic select statement thus:

"new(PurchaseOrderID as ID_PK, PContractNo + GoodsSupplier.AssociatedTo.DisplayName as Search_Results)"

As can be seen I wish to concatenate the 'PContractNo' and 'GoodsSupplier.AssociatedTo.DisplayName' fields into one returned field named 'Search_Results'. It is important that these two fields are combined.

However the Linq library complains regarding the '+', which the expression parser brings back as a 'Concat(etc...), which of course cannot be translated into a store expression.

Obviously therefore I would like some help regarding just how i should format the select string in order to do what I want. I've tried many things!

Any help would be greatly appreciated!

Thank You, Ian Mac