Thanks for your reply Mark,
Yes, when you use the "WebSite" project model for ASP.NET 2.0+ Web
application/webservice, it use a dynamic compilation mode. Thus, some
components such as Typed Dataset, webservice proxy will not show the
auto-generated code file. For such scenario, a common approach is move the
Typed Dataset into a class library project. Thus, you can add partial class
file for the typed dataset in the class library project. And in your
ASP.NET webservice project, you can reference the class library assembly to
use the typed Dataset. Do you think it workable for your scenario?
If there is any further questions, welcome to post here.
Sincerely,
Steven Cheng
Microsoft MSDN Online Support Lead
Delighting our customers is our #1 priority. We welcome your comments and
suggestions about how we can improve the support we provide to you. Please
feel free to let my manager know what you think of the level of service
provided. You can send feedback directly to my manager at:
msdnmg@microsoft.com.
==================================================
Get notification to my posts through email? Please refer to
http://msdn.microsoft.com/subscriptions/managednewsgroups/default.aspx#notif
ications.
==================================================
This posting is provided "AS IS" with no warranties, and confers no rights.
--------------------
From: "Mark Baldwin" <sWozzi3@community.nospam>
References: <O2dGOlkmIHA.3780@TK2MSFTNGP06.phx.gbl>
<qoj2djrmIHA.9932@TK2MSFTNGHUB02.phx.gbl>
Subject: Re: DataSets and default columns
Date: Mon, 14 Apr 2008 11:38:38 +0100
Steven
Thanks for your reply, however the typed datasets are defined in the web
service and there seems to way to open the partial class code window -
double clicking on the design surface does nothing. I can do this in the
client for a client specific dataset, but not in the web service.

Signature
Best regards
Mark Baldwin
> Hi Mark,
>
[quoted text clipped - 22 lines]
>
> #Extending Typed DataSets - Sorting Child Rows
http://www.madprops.org/cs/blogs/mabster/pages/extending-datasets-sorting-ch
> ild-rows.aspx
>
[quoted text clipped - 41 lines]
> ==================================================
> Get notification to my posts through email? Please refer to
http://msdn.microsoft.com/subscriptions/managednewsgroups/default.aspx#notif
> ications.
>
[quoted text clipped - 34 lines]
> in the table to AllowNulls but I don't want to do this, it's just not good
> practise to allow UI problems to be solved in the data layer.