The argument type System.Data.DataSet cannot be converted into parameter type Sy

  • Thread starter Thread starter Paul Warnk
  • Start date Start date
P

Paul Warnk

I have a three tier application using remote objects.
Everything works fine in my development environment but
when I move the code to production, I get the following
error when passing a dataset as a parameter.

The argument type System.Data.DataSet cannot be converted
into parameter type System.Data.DataSet
 
This is very strange indeed. It sounds like the type of message you would
get when using a web reference (which creates a "copy" of the type
definition, two completely different types as far as the runtime is
concerned).

Are you somehow loading separate versions of the framework?

Josh
 
Back
Top