My SQL Server database contains nullable DateTime values. How can I convert them to a nullable DateTime object in my application in C#?
This is what I would think it
Just use:
System.Nullable yourVariableName;
Make it easy on yourself :)