I am starting to learn nullable types and ran into following behavior.
While trying nullable int, i see comparison operator gives me unexpected result. For example,
Comparing C# with SQL
C#: a=null and b=null => a==b => true
SQL: a=null and b=null => a==b => false