-1
good night!
its new in C language#
would like to know how to convert nvarchar to bit
System.Data.Sqlclient.Sqlexception: 'Failed to convert nvarchar value 'Punctual Payment' to bit data type.'
strSQL.Parameters.AddWithValue("@parm22", checkbox_pg_pontual.Text);
Use:
Boolean.Parse(checkbox_pg_pontual.Text)
.– CypherPotato
tried by, only it is still appearing System.Formatexception: 'String was not recognized as valid Boolean.'
– MAGUIM