The typed-dataset tag has no wiki summary.
0
votes
2answers
197 views
Insert, Update, Delete using Typed DataSet
I have a simple application where there is a listbox with names of authors in the database (for the purpose of this project 1 author = 1 book). I have to use a typed DataSet for this application.
...
0
votes
0answers
202 views
How to make a textbox control subscribe to the propertychanged event of a typed datatable(winforms)
I have a typed dataset(CustomDataset) created with "dataset designer" visual studio 2010. I want to implement the INotifyPropertyChanged for the datatable (the only datatable in the CustomDataset).
...
0
votes
0answers
70 views
Use both Typed DataSet and Entity Framework in an application
I have to extend the functionality of existing C# desktop application that was previously using Typed DataSets and its ConnectionString in app.config. I want to use Entity Framework and add more ...
2
votes
3answers
216 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
120 views
Force all typed datasets to regenenate their designer.cs files
We found a problem in our projects where some of the dataset .xsd files are out of sync with the designer.cs files while upgrading from VS2008 to VS2010.
In VS2008 everything builds perfectly, until ...
0
votes
0answers
90 views
How to use transactions with typed dataset in c#?
I have a dataset.
How do I use transactions in this code?
tbl1TableAdapter.Insert(Parameter1,Parameter2,...);
tbl2TableAdapter.Insert(Parameter1,Parameter2,...);
.
.
...
4
votes
2answers
2k views
Best Practices with Large DataSet in C#
Currently I'm working in desing and implement a software who has to implement CRUD operations over two tables with master-detail arquitecture. Header has about half million of rows and detail about ...
0
votes
2answers
291 views
closing a win form when datagridview has validation errors
I'm using typed dataset in winforms app, .net 3.5 (VS 2010). A form has DataGridView. In FormClosing event I ask user to save changes. If user doesn't want to save I'd like to let the from close. ...
1
vote
1answer
399 views
Get Identity Value from Typed DataSet
I got a typed dataset in my form. Using BindingSource to walk in rows, inserting and updating records.
Everything is fine but I need inserted records identity value for generating a string for my ...
3
votes
3answers
3k views
asp.net InsertCommand to return latest insert ID
I'm unable to retrieve the latest inserted id from my SQL Server 2000 db using a typed dataset in asp.NET
I have created a tableadapter and I ticked the "Refresh datatable" and "Generate Insert, ...
0
votes
1answer
175 views
How to create a typed dataset via the designer
I need to create a typed dataset using vs.net 2008.
It is not based on a database table.