2
votes
3answers
214 views

Typed dataset correct usage

If I understand this right, do I have to use the table adapters to get data into my typed data set, I can't just create my strongly typed data-set and have the data autoload? (im also using a .net 3.5 ...
0
votes
0answers
142 views

How to force a custom namespace for the generated code of strongly typed dataset for a web site using Visual Studio

with a Visual Studio Web Application project is quite simple to set my own namespace (via the "Custom Tool Namespace of the DataSet xsd). But what about a WebSite project? I tried to search and ...
0
votes
1answer
185 views

Autoincrementing field in typed dataset

I'm using typed dataset and trying to update a table with one autoincrementing column. The problem is that when I update this table in the following manner tableAdapter.DeleteAllQuery();// ...
0
votes
1answer
173 views

Concat Columns with NULL-values

I want to concat two Columns in the TableAdapter Wizard of the VS Dataset-Designer. The problem is that one column has NULL-Values and hence the concatination results in NULL regardless of the value ...
2
votes
1answer
370 views

xml and strongly-typed datasets with the dataset designer

I'm not sure if this is possible but here is what I want to do: I have created a strongly-typed dataset, StrTypDS using the dataset designer in Visual Studio. I have also created an blank xml file and ...
6
votes
3answers
1k views

Question about how to use strong typed dataset in N-tier application for .NET

I need some expert advice on strong typed data sets in ADO.NET that are generated by the Visual Studio. Here are the details. Thank you in advance. I want to write a N-tier application where ...
1
vote
1answer
509 views

VS2008 DataSet Wizard doesn't match tables for updating

first question ever on this site. I've been having a real stubborn problem using Visual Studio 2008 and I'm hoping someone has figured this out before. I have 2 libraries and 1 project that use ...
2
votes
2answers
1k views

How do you disallow DebuggerNonUserCodeAttribute from being placed on the code generated by the dataset designer?

Hey I would like to step thru dataset designer code in an ASP.NET project, how can i ensure that this: [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] is not included on the code it ...
0
votes
1answer
65 views

How can one easily set up sproc parameters in a strongly-named DataSet in Visual Studio 2005?

I don't usually work with this type of data layer so I'm not familiar with all the terminology and it's difficult to search for answers. I have an XSD file in Visual Studio 2005, and I'm looking at ...
1
vote
2answers
293 views

How can I use my own connection class with a strongly typed dataset?

I have designed a class with sqlClient.SqlCommand wrappers to implement such functionality as automatic retries on timeout, Async (thread safety), error logging, and some sql server functions like ...