public void GetParameter() { SqlType type = new SqlDateTime(testDateTime, ParameterDirection.Input); TestHelper.AssertSqlParameter(type.GetParameter(), SqlDbType.DateTime, testDateTime); type = new SqlDateTime(null, ParameterDirection.Input); TestHelper.AssertSqlParameter(type.GetParameter(), SqlDbType.DateTime, DBNull.Value); }