User1853794821 posted
I am a newbie at C# and VWD, but quite experienced in SQL and SQL app development in general. I have tried to extend the MemberInfo table/Dataset in the Club Site and got thoroughly bolluxed up.
I first added my new column to the MemberInfo table and that was uneventful.
I then CONFIGUREd the XSD Dataset "MemberInfo": Open up the XSD diagram, right click on the MemberInfo dataset, select "Configure"
I updated the SQL SELECT statement to include the new column.
I hit the NEXT button which displayed the following methods
(1) Fill a Data Table: name=GetMemberList
(2) Return a Data Table: name=GetMemberList
I did not want to mess with the method names so I just hit the NEXT key and then the problems started. I got the following error message:
"The names specified for 'Fill a Data Table' and 'Return a Data Table' cannot be the same" with the inevitably useless OK button.
Now I tried changing those names and suddenly I start getting 100+ error messages that refer to impacts of this change. I am now completely lost.
Also, have I encountered a bug in the APP? It would seem that - if the XSD configurator forbids the use of the same name ("GetMemberList") for the two different methods, then the app should respect that rule. Check it out; the app uses the same
name for each (Fill table and return table).