I am asking a similar question, but in a different way. In my test/dev environment, I have a new VS2012 C# .NET 3.5 solution / project web application that hits my local SQL Server 2012 Express instance on my test/dev pc.
The new project is a rewrite of an old project, and the old project was written in VS2008 hitting our production SQL Server 2008 Express instance.
I have copied in the Typed DataSet files (.xsd, .xss, .xsx, .xsc, .Designer.cs, etc) from the old VS2008 project into the new VS2012 project.
I can use these Typed DataSets to interact with my local test db (retrieve, save, update, etc), but need to update them to make them aware of newly created columns in one of the test db tables.
How do I go about doing this? I have read that one way is to double click the .xsd, then right click on a table and click "Configure...". That menu item is disabled. I have created a new Data Connection in Server Explorer to the test db, but that isn't helping as I think there is a disconnect between the Typed DataSets and the db...
One more thing, I also needed to copy from the old project to the new these DataConnection files (.cs and .resx) in order to use the Typed DataSets.
Thx