Description of inference from data adapter

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

In VS.NET, I use "Generate Dataset" to generate the .XSD + dataset from a
data adapter (SQL).

Could some nice soul be kind enough to point me in the direction of (say) an
MSDN article which describes just what is/is not generated/inferred into the
schema by this method. I'm (fairly) sure I saw an article/page detailing
this, but cannot locate it from all my searching....
 
Hi,

Only for complexType child element of a schema element, a table is generated
in the DataSet. The table structure is determined by the definition of the
complex type. If element is of a simple XML Schema data type such as
integer, no table is generated.

For more information you can refer to the following article
[Generating DataSet Relational Structure from XML Schema (XSD)]
http://msdn.microsoft.com/library/d...ing_dataset_relational_structure_from_xsd.asp

HTH

Mona
 
Back
Top