Strong Typing Problems in CF

  • Thread starter Thread starter Eric
  • Start date Start date
E

Eric

Can I use strong typeing of datasets in the CF?

I have run XSD, the classes implement serialization. . . even stripping that
code, I still have numerous problems. . .

Is there something else? Some other xsd?

thanks

e
 
Stronly typed datasets like the full framework (where you get full
intellisense and the like )aren't available in the CF. You can still read
in a schema and use XmlReadMode.ReadSchema but it's challenged in many
regards. All in all, the CF doesn't perform schema validation (yet) and the
fugly part is that it doesn't blow up on you but it just doesn't enforce
what it should. It can be a bit confusing.

WIth that said, can you post your code? We can try to do the best with what
you have.

HTH,

Bill
 
Eric,

If you continue stripping out all the code generated with xsd that won't
compile, you should eventually end up with a strong typed DataSet that you
can use. Fortunately VS 2005 will solve this problem for us, but that's a
while off.
 
Back
Top