Hi,
I was wondering how to go about this -or if this is possible?
I have a complex typed view (complexStudents) which may return multiple records for a student as well as a simple type view (students) which returns only unique records for a student.
I would like to:
a) Use the complex typed view (complexStudents) to be able to select (filter) students by predicate criteria.
b) Given that there may (usually would) be multiple records -> then select only the only the unique student ids (which are Guids)
c) Use those unique student ids to select 1:1 records from the simple type view (student) to display as the results to the user.
Can anyone please help?