I am populating tables using a stored procedure. The table allows a \'null\' for the middle initial of the name, but I\'m getting the following error message:
You need to declare on everything - even if it's null.
Use DBNull.Value for MiddleInitial.
MiddleInitial
cmd.Parameters.AddWithValue("@MiddleInitial",DBNull.Value);