I have a big flinq request which, by the way, returns the start date of the conversation. I would like to return only the conversations that were started after 1-1-2011.
I have something like this:
conversation.TimeOfInitiation > "1-1-2011"
but I get this error:
The type System.Nullable<System.DateTime>does not support the 'compare' constraint. For example, it does not support the "System.IComparable" interface
obvoiusly my naive approach failed. How do I get around this?
source
share