I’m still learning the ropes for Entity expressions, and I have this SQL query that I would like to implement into a Entity expression, the query is:
SELECT classname,abbreviation, cid
FROM [db].[dbo].[classes] AS c
WHERE c.cid IN (
SELECT DISTINCT(CID)
FROM [db].[dbo].[CDS]
WHERE
sid = '1'
AND
did = '24'
)
ORDER BY abbreviation, classname
How would I go about implementing that query into an Entity expression?
The expression would be :
Hope this will help !!