vote up 2 vote down star
1

What is a strongly typed dataset? (.net)

flag

6 Answers

vote up 2 vote down

Short answer: A dataset which is guaranteed (by the compiler) to hold a specific type.

link|flag
vote up 12 vote down

A strongly typed dataset is one that has specific types for the tables and their columns.

You can say

EmployeeDataset ds = ...
EmployeeRow row = ds.Employees.Rows[0];
row.Name = "Joe";

instead of:

DataSet ds = ...
DataRow row = ds.Tables["Employees"].Rows[0];
row["Name"] = "Joe";

This helps because you catch mistakes in naming at compile time, rather than run time and also enforces types on columns.

link|flag
This is not entirely correct. The dataset has types for the tables and the types have properties to the tables columns. Nitpicking... :-) – Rune Grimstad Nov 24 '08 at 20:25
vote up 0 vote down

A dataset which is tightly to a specific table at compile time so you can access the columns of a table using actual column name instead of index.

link|flag
vote up 2 vote down

MSDN

link|flag
vote up 0 vote down

It looks like DataSet has already been covered, but for completeness, note that in .NET 3.5 there are good alternatives for simple data access; in particular, things like LINQ to SQL. This has a similar objective, but retains a much purer simple OO model to your data classes.

link|flag
Unfortunately, LINQ to SQL means LINQ to SQL Server... – Seiti Nov 24 '08 at 20:22
@Seiti - that was one example. DbLinq and EF both target multiple databases, as will LINQ-to-NHibernate when it arrives. – Marc Gravell Nov 24 '08 at 22:12
vote up 0 vote down

A headache...

Sorry... I've been struggling with this beast for a while.. For this reason.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.