1
I’m trying to set the property MissingSchemaAction
of an object NpgsqlDataAdapter
, but Visual Studio is complaining that the property does not exist.
I looked at the github of the project and saw that NpgsqlDataAdapter
inherits from DbDataAdapter
, where the documentation shows that owns the property I’m trying to set.
If NpgsqlDataAdapter
inherits from DbDataAdapter
, why am I not getting this property set?
You may be using one object but you may be thinking you are using another. You need more details on how this is going.
– Maniero
I’ll edit and post a print of the code
– Matheus Saraiva