Download the Orcas beta. See if their new approach is easier to use.
--
____________________________________
William (Bill) Vaughn
Author, Mentor, Consultant
Microsoft MVP
INETA Speaker
www.betav.com/blog/billva www.betav.com Please reply only to the newsgroup so that others can benefit.
This posting is provided "AS IS" with no warranties, and confers no rights.
__________________________________
Visit
www.hitchhikerguides.net to get more information on my latest book:
Hitchhiker's Guide to Visual Studio and SQL Server (7th Edition)
and Hitchhiker's Guide to SQL Server 2005 Compact Edition (EBook)
-----------------------------------------------------------------------------------------------------------------------
[quoted text, click to view] "Joel Lyons" <joell_REMOVE_@novarad.net> wrote in message
news:OmosvL1vHHA.2352@TK2MSFTNGP03.phx.gbl...
> I've been using the VS 2005 wizards to generate strongly-typed datasets,
> datatables, and table adapters for a client/server application. I use the
> table adapters on the server to connect to the database and retrieve
> datatables. I then return those datatables to the client. I would really
> like to have the datatable definitions in one assembly (distributed with
> the
> client application) and the tableadapters in another assembly (only needed
> on the server, has a bunch of code and connection strings).
>
> It was fairly easy to split them up manually and compile them into
> separate
> assemblies. Of course, once I do that the designer can't handle the
> tableadapters any more so it makes it very difficult to upgrade and
> maintain
> them.
>
> It would be nice if the VS designer allowed us to generate them separately
> so they could be compiled into separate assemblies.
>
> Anybody have any thoughts/ideas on this? What is the underlying tool that
> VS uses to generate table adapters? Perhaps it supports this kind of
> thing.
>
> Joel