TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
narasimman g
1.6k
160
351.9k
Is it Same or Using Datarelations will save time?
Aug 30 2011 1:47 AM
Hi Everyone,
Hope you ppl are doing good, I need a suggestion.I have been working on Performance tuning.Consider the below Scenario
Three tables from Database A,B,C
Primary key in A and same Foreign keys in B and C
We retrieved three tables and performing a looping based on the Primary Key ID.in the following manner
Scenario 1
for
{
for
{
if A Primary is Equal to B Foreign{}
}
for
{
if A Primary is Equal to C Foreign{}
}
}
We all knew It loops more times ..I have more than 100 records in each table..
Now i cosidered to add Datarelation in dataset between three tables.
and use the below coding
Scenario 2
foreach(datarow dr in A.rows)
{
foreach(Datarow dr1 in dr.GetChildRows("RelationName"))
{
}
}
}
Please suggest me guys.
Reply
Answers (
1
)
code for search engine in c#
About web configuration file.......