Top "Strongly-typed-dataset" questions

In the Microsoft .NET framework, strongly typed DataSets derive from the DataSet class, but instead of exposing a property of type `object` for each column in a table row, they expose properties of the correct types for the underlying data type of each column (string, int, DateTime and so forth).

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 …

c# asp.net reflection strongly-typed-dataset datarow
EnforceConstraint on Datatable

On a dataset is a EnforceConstraints property indicating whether the constraints should be enabled. Althought a datatable also can have …

c# datatable strongly-typed-dataset constraints
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 …

.net int nullable strongly-typed-dataset
How do you filter a TableAdapter's FillBy based on two tables?

I'm using VS2008 C# Express and the Northwind database on a Windows Form application. I used drag and drop to …

c# filter strongly-typed-dataset tableadapter
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 …

c# entity strongly-typed-dataset
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 …

c# serialization deserialization strongly-typed-dataset
StrongTypingException when setting column value

Can anyone please tell me why I get a StrongTypingException when ASSIGNING a value to a column in a strongly …

c# .net strongly-typed-dataset
Create entire DataSet from existing stored procedure

I have stored procedures (they accept parameters) that return multiple result sets and I'd like to have this saved in …

visual-studio-2010 stored-procedures dataset strongly-typed-dataset
Why does my typed dataset not like temporary tables?

I am attempting add a tableadapter to a stored procedure in my SQL Server 2005 Express. The stored procedure, however, uses …

tsql stored-procedures visual-studio-2008 strongly-typed-dataset sql-server-2005-express
DataSet.DataTable.DataRow (Single) to XML String

I have strongly-typed datasets in the project that I am currently working on and I need to convert a DataRow …

xml c#-4.0 xml-parsing strongly-typed-dataset