XML support in ADO.NET

K

Kerry Reynolds

I've got a dataset with <xs:restriction> tags, custom elements and
other stuff in it. I want to populate it using a dataadapter and data
from SQL but it ignores the schema/tags.

Apparently this is due to the way ado.net works with XML. To do it I
have to revalidate the xml data using the XMLValidatingReader class,
which then gives me a performance overhead and is a right programming
pain.

Does anyone know if Microsoft has plans to provide more complete
support for xml documents in ADO.NET in a future release?
 
C

Cor

Hi Kerry,

I think it is not XML but the SQL database the design has not changed for a
long time.

SQL databases allow only a straight relation database and therefore the XML
dataset can never been more complex than that database.

Just my opinion.

Cor
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top