Hi,
I'm using the latest release. I have a very simple view with this query:
SELECT SubjectId, MIN(Date), MAX(Date) FROM Records GROUP BY SubjectId
Running this query gives three (3) columns: subject id, earliest record date, and latest record date.
In Visual Studio Server Explorer if I select 'Retrieve Data', I only get SubjectId column. If I look at the properties of the other columns, I can see they don't have a Data Type. How can I force a type for the columns, so I can see them when I retrieve data and subsequently use them in my Entity Model? Or should I somehow change the view?
Best regards,
- Jussi