public class PersonWithText
{
public System.Int64 Id { get; set; }
public System.Guid SessionId { get; set; }
public Hands? ColumnNVarChar { get; set; }
}
PersonWithText person = new PersonWithText()
person .ColumnNVarChar = null;
connection.Insert<PersonWithText , int>(person );
Insert command fill column ColumnNVarChar with string empty instead of NULL
Insert command fill column ColumnNVarChar with string empty instead of NULL