Hey,
I have a query that is Concatenating 2 select statements into 1 result set. I now need to sort them together.
This is the query:
Dim fRem = ((From r In db.Reminders _
Where r.CreatedBy = ui.UserID _
Select ID = r.ID.ToString, Name = r.Name, Time = r.ReminderQueues.FirstOrDefault.Time, _...