Filling a Strongly typed dataset

G

guevara_81

Quick question.

I have a strongly typed dataset, created from the schema designer, with
parent and child relations (FKs). The data represented in the schema
is from multiple physical tables. When I do a
da.Fill(StronglyTypedDataSet, sourceTable) is the "sourceTable" an
actual table in the DB, or the table in the "StronglyTypedDataSet"? I
know this is probably a dumb question.

Thanks in advance,
AP
 
G

guevara_81

NeverMind everyone, nothing to see here...

Just In case someone has the same issue, or I become brain-dead in the
future

ds.Fill(StronglyTypedDataSet,
StronglyTypedDataSet.ActualTableName.TableName);
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top