The strongly-typed-dataset tag has no wiki summary.
2
votes
1answer
1k views
Retrieve identity value from inserted record's primary key
i cannot retrieve the new identity value from an inserted record(via DataAdapter.Update) in my DataRow.
I'm using a strong typed Dataset as DAL. The table i want to update is joinded with other ...
5
votes
2answers
2k views
Transactions in Typed DataSets
Have a typed dataset with several related tables, and relations defined between those tables. As I process a datafeed, I'm adding, modifying, and removing records, then calling update on each table.
...
0
votes
2answers
2k views
Can you sort Typed DataSet DataTables with Linq OrderBy?
I have a Typed DataSet DataTable which inherits TypedTableBase<T>, which in turn implements IEnumerable<T>. I can't seem to get this to work.
myDataTable.OrderBy(x => x.ID).ThenBy(y ...
6
votes
1answer
3k views
Best Practice Using C# XSD typed-datasets In Enterprise Applications
I'm trying to understand what is the best practice using XSD tables generated from the Database scheme that I currently use.
1) Do you think the XSD information should be located as part of the ...
4
votes
3answers
5k views
Nullable Int Column in DataSet
I'm working with .NET strongly-typed datasets and have a table with a nullable int column (and a nullable DateTime column as well).
Apparently there is a bug with the dataset designer that prevents ...
2
votes
4answers
3k views
How to convert typed DataTable into List of Entity?
I need to convert the data of a Typed DataTable to List of my entity. I've Mapped all the fields of entity with field of DataTable.
Any ideas?
2
votes
1answer
10k views
C# Reflection: Getting the fields of a DataRow from a Typed DataSet
I am currently building a method that takes an object that is of type DataRow from a typed DataSet, and then returning a string in JSON format of the fields in the DataRow (for use in a Web Service).
...
1
vote
1answer
2k views
Handcrafted Strongly Typed ADO.net DataTable - Can it be cleaner?
I have recently come across a very simple Typed DataTable (without using a .XSD)(I've lost author's URL so I can't credit him) but it looks like there's a lot of duplicated code (Such as the ...
0
votes
1answer
733 views
ParentRelations don't work in generated DataSets?
I created two tables:
Publisher
PK, PublisherId, int, not null, indentity +1
PublisherName, varchar(50), not null
Product
PK, ProductId, int, not null, identity +1
ProductName, varchar(50), ...
1
vote
1answer
1k views
Casting DataRow to Strongly-Typed DataRow: How do they do it?
I'm trying to make a lightweight version of some strongly-typed DataRows in order to write a test for a method that takes IEnumerable<T> where T : DataRow.
I would like to make a class that ...
1
vote
2answers
2k views
How to serialize/de-serialize a custom DataSet
I have a winforms app that uses a strongly typed custom DataSet for holding data for processing. It gets populated with data from a database.
I have a user control that takes any custom dataset and ...
1
vote
1answer
392 views
How to get underlying type from typed DataSet
I've been searching a lot but I haven't found anything about this question. I'm making a log of my app and I'm printing types of variables and their values. I want to do the same for every object I ...
1
vote
2answers
1k views
Populating related datasets from a table adapter
I'm using table adapters and datasets in .NET (version 2.0).
I have two tables like this:
Table1
------
...
TypeId
Table2
------
Id
Name
where Table1.TypeId is linked to Table2.Id.
I've strongly ...
1
vote
3answers
2k views
MS-Access: TableAdapter UpdateCommand for table without primary key
What's the syntax for an Update query for a table without a primary key?
Disclaimer: Frustratingly, adding a primary key is not an option. My program is a small program in a much larger system with ...
1
vote
2answers
263 views
How to execute a custom command against a typed dataset
I want to execute a custom command against a typed dataset I created using the dataset designer. For this I need to get a reference to the underlying connection, right? How to go about this? In which ...
1
vote
2answers
1k views
Inserting data into C# Datasets
I am using C#.Net application in which i created a dataset.Now i want to create a method in which i will enter a record in one table which will return a value ie primary key.Now by using that primary ...
1
vote
2answers
2k views
Windows Forms - Validate DataGridView input
I have a Windows Forms application with a DataGridView in one of the forms. The DataGridView can insert and update through a Typed Data Set generated by Visual Studio.
I want to show user friendly ...
0
votes
4answers
296 views
i have a problem implementing the mvp pattern in c# and asp.net
i've created a forum system in MVP pattern but i'm not sure if i implemented it in a right way. so here is what i ended up with:
i've created a database which has three tables: forums, threads, ...
0
votes
0answers
551 views
how to map ado.net datatables from multiple result set stored procedure to custom-made classes
I'm looking for an example or clarification on how to map the results of a
stored procedure to custom made classes based on the following:
The stored procedure returns multiple result sets.
...
0
votes
2answers
2k views
Modifying the Data Source for the Strongly Typed Dataset connection string
Here are two questions related to modifying the data source for strongly typed dataset connection string.
When my app is deployed, a light weight database ( in the form of Microsoft Access) is ...
