Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 3983538
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 20, 20262026-05-20T05:39:37+00:00 2026-05-20T05:39:37+00:00

Q: I have the following case and i need the best performance answer: i

  • 0

Q:

I have the following case and i need the best performance answer:

i will use advanced control like gridview or schedule , and the data that is supposed to be bound to this control is : data from set of tables in my database.not a single table.

what is the best form for this data?

what i thought about at first is:

stored procedure ,contains my logic (and i wanna to ask here about what is the best performance also)use temporary table or joins or … etc.

what are the possible solutions and more performance rather than stored procedure( as this is a web application many users will use it).
i will be grateful if there is an example to clarify the idea.
thanks in advance.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-20T05:39:38+00:00Added an answer on May 20, 2026 at 5:39 am

    The most common way would be to join the tables in an sql stored procedure, performance is not typically an issue unless you are joining many many tables or using a number of nested select statements.

    However, if you really need an alternative, you could load data from each table individually (possibly into representative objects i.e. a user object for each row of data from the user table) and then create a data structure to house a combination of the data (i.e. if you have user objects and schedule objects, you could create a UserSchedule object) then you could bind your control to a list of these secondary objects.

    EDIT

    Since you seem to really not want to use stored procs. How about a compromise?
    You could use LINQ to entities to join multiple sets of data within C# after getting them all from the DB separately.

    Here is an example:

    ObjectSet<SalesOrderHeader> orders = context.SalesOrderHeaders;
    ObjectSet<SalesOrderDetail> details = context.SalesOrderDetails;
    
    var query =
        from order in orders
        join detail in details
        on order.SalesOrderID
        equals detail.SalesOrderID into orderGroup
        select new
        {
            CustomerID = order.SalesOrderID,
            OrderCount = orderGroup.Count()
        };
    

    And here is a link to more info.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have the following use case: I need to process a big number of
I have the following case: All boats have a boat type like shark ,
I have the following case , and i wanna to ask what's the best
I have the following use case: There's a class called Template and with that
I hall, I need your opinion on what is best in the following case.
I have the following case where I want to accept the following routs '/type/view/23'
I have the following case where I get the result of UTF-8 encoded HTTP
I have the following case in php $one = array('one' => 1, 2 =>
I have seen the following exception case several times public SomeClass(IEnumerable<T> someValues) { if
I have the following snippet from my code: switch ($extention) { case gif: $src

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.