DbType equivalent to SqlDbType.Bit
问题 Does anyone know what is the DbType equivalent to SqlDbType.Bit? I am trying to convert param[0] = new SqlParameter("@Status", SqlDbType.Bit); param[0].Value = Status; to db.AddInParameter(dbCommand, "@Status", <DbType dbType>, Status); but I don't know which DbType to use to represent a single Bit. Any ideas? 回答1: The database type bit is represented as a boolean on the server side, so the corresponding DbType value is DbType.Boolean . 回答2: DbType.Boolean: A simple type representing Boolean