I\'ve got a membership table that records whether a user is a member of a list. When an update to a user\'s membership occurs a new record is written and the previous records ar
Without posting code it's hard for anyone to see what your issue is.
Are you not able to just order the results by your date field and then select the first record? Something like users.OrderByDescending(u => u.Inserted).FirstOrDefault()?