Is there a way to write following query with Linq to Entities (or Entity SQL, or Method Syntax, or any other way, but I would like to achieve it with Linq to Entities):
SELECT DISTINCT Column1
FROM Table1
I’m using Entity Framework 4. Of course I don’t want to use Distinct method that filters data after data is fetched from database.
thanks,Pawel
Use something like
As Munim mentioned in his comment, the Distinct() method does add the DISTINCT to the query. So resulting SQL query will be