This thread looks to be a little on the old side and therefore may no longer be relevant. Please see if there is a newer thread on the subject and ensure you're using the most recent build of any software if your question regards a particular product.
This thread has been locked and is no longer accepting new posts, if you have a question regarding this topic please email us at support@mindscape.co.nz
|
i m getting error 'Concate prperty is not Supported' when i trying to concatenate numeric value wid string value. I m getting problem in following qyery
Dim Result= (From t1 In ContextFactory.Repo.tbl1 Where Order By t1.Id Descending Select t1.Id,C= "$" + t1.Cost.tostring() , t1.AmountType, ).ToList() Please help me its urgent |
|
|
This appears to be a VB compatibility issue. We will investigate but in the meantime the solution is to do the concatenation on the client by using AsEnumerable: Dim result = (From t1 In tbl1 Select t1.Id, t1.Cost, t1.AmountType) |
|
|
The VB compatibility issue will be fixed in the next nightly build. |
|