I've just converted my project from VS2003 to a web application on VS2005; most things seem to have converted across fine. The main outstanding issue I have is the Merge functionality on my Typed Datasets no longer seems to work. The code is very simple, and worked perfectly in v1.1
// Filter rows
Venue.VenueFoodItemsRow[] foundRows =
(Venue.VenueFoodItemsRow[])venue.VenueFoodItems.Select("MenuType=" + m_MenuType_ID);
// Clear existing rows
venue.VenueFoodItems.Clear();
// Merge back into the dataset
venue.Merge(foundRows, false, MissingSchemaAction.Ignore); // Not working any more
The foundRows[] array has a length of one, so the SELECT is working, and there are 8 tables in the venue dataset before and after the merge. Has anyone come across this problem before, and found a solution? I'm completely at a loss here!
Thanks in advance!
Dunc
http://www.fluidfoundation.com
http://www.fluidstyle.co.uk
http://www.fluideating.co.uk