Filling a Strongly typed dataset

  • Thread starter Thread starter guevara_81
  • Start date Start date
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
 
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);
 
Back
Top