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).

Passing a SQL parameter to an IN() clause using typed datasets in .NET

First apologies as there are similar questions on this site, but none of them answer this problem directly. Im using …

c# sql parameter-passing strongly-typed-dataset
How to Update Dataset for RDLC Reports

I have created DataSet for RDLC reports. Now i have changed my Stored Procedure by adding some new Columns to …

dataset rdlc strongly-typed-dataset
Casting generic datatable to typed datatable

I need to reuse a DataAccess method prescribed by client. This method returns a vanilla datatable. I want to cast …

c# datatable strongly-typed-dataset
Dataset allowing Null values even when AllowDBNull = False?

I have designed a dataset using VS2008 dataset designer. In one of the datatables, I have set "AllowDBNull" property of …

c# visual-studio-2008 strongly-typed-dataset
Dataset vs Entity Framework with stored procedures

The whole question has been rewritten to be more clear.. New project design: Sql Server 2012 Visual Studio 2012 .Net 4.5 Business logic …

.net entity-framework visual-studio-2012 dataset strongly-typed-dataset
Add a new row into strongly typed DataSet?

I have following XML document: <Form ID="1"> <Persons> <Person Name="Mike"/> <Person Name="…

c# strongly-typed-dataset
Nullable types in strongly-typed datatables/datasets - workarounds?

Strongly-typed DataTables support "nullable" field types, except that the designer will not allow you change the setting to "allow nulls" …

c# dataset extension-methods nullable strongly-typed-dataset
How to find which column is violating Constraints?

I have a strongly typed data set which throws this error for null values, System.Data.ConstraintException: Failed to enable …

c# sql-server-2008 stored-procedures strongly-typed-dataset