In the code below, I want to compare two GUIDs. The problem is I don\'t get any tasks returned because the GUIDS are different case (uppercase vs. lowercase). I need to perf
Not sure why you're comparing them as text, but instead of t.user_id == userId use t.userId.Equals(userId, StringComparison.OrdinalIgnoreCase)
t.user_id == userId
t.userId.Equals(userId, StringComparison.OrdinalIgnoreCase)