1. Looking for sample XML to sample XSD
2. Creating a Database using the STL: Newbie looking for code samples
3. 3.0 SDK? (want to look at LINQ samples) - .Net Framework
4. 3.0 SDK? (want to look at LINQ samples)
Good morning! Can anyone point me at where to download the 3.0 sdk (does that exist yet?) I see the 3.0 runtime download, don't see an sdk though? I want to take a look at LINQ. Thanks in advance! Derrick
5. Speed of switch/case vs hash table for parsing XML - CSharp/C#
6. Dump SQL Server database to XML through C#
Ok, I'm trying to dump an SQL Server 2005 database to XML via C#, and I'm having some troubles. I'm relatively new to the whole .net thing, so there may be some stupid/basic questions/assumptions involved. The first way I thought about doing it was dumping the entire dataset to XML. However, as far as I can tell there's no way to populate the entire dataset at once (I'm using an auto-generated dataset from Visual Studio 2005). I think if I could do that it would be simplest, but I haven't even found something hinting that its possible. Right now I've got a partial solution where I loop through each of the tables and print that out as XML. However, that is printing them out as individual entities, instead of printing out the document as one entire XML document. While that might work, I'd much rather have it all nice and together. <database><table1>...</table1><table2>...</table2>... is what I'd like. What I'm getting is <document><table1>...</table1></document><document><table2>...</table2></document>...
7. Dump SQL CE Database into dataset XML - SQL Server CE
8. Fill Database Table with Sample data
I want to load some sample data for my nunit unit tests in the database. And I want to do this by taking the data from a file, preferably an xml file that is generated by the command "SELECT * FROM SomeTbl FOR XML AUTO". I want to load this back to the table without much effort. Is there a simple way of doing this? Is there any adapter that lets me fill the database table using the xml file? Thanks