I\'m writing a Function that pulls Records from a DataBase using LINQ to get an IQueryable. This LINQ statement will pull all of the records for Active users within a certai
Use the Distinct() method to do this. Eg:
var query = from Notification in db.Notifications select Notification.client ; query=query.Distinct();
The resulting query will only contain distinct values.