質問

How can I retrieve distinct rows from a table using massive ORM . I need to get list of unique studentname from table 'Student' that has columns ID,StudentName,Age . ID is the primary key.

Note : executing raw query using Query() is not what is needed.

役に立ちましたか?

解決

What about this:

dynamic studentTable = new Students();
var students = studentTable.All(columns: "distinct StudentName");

他のヒント

create non-clustered index on studentname column and then try this query

select distinct StudentName from Student
ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top