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 6641123
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T23:46:25+00:00 2026-05-25T23:46:25+00:00

Hi I have a method like: public JsonResult GetActivities(int id) { var activities =

  • 0

Hi I have a method like:

public JsonResult GetActivities(int id)
{
    var activities = ActivityRepository.GetAll().Where(x => x.AreaId == id);

    var jsonData = new {
        rows = activities.Select(q => new {
            Id = q.Id.ToString(),
            q.Descriptor
        }).ToList()
    };

    return Json(jsonData, JsonRequestBehavior.AllowGet);
}

It works fine but I find the line:

var jsonData = new
{ 
    rows = activities.Select(q => new { Id = q.Id.ToString(), q.Descriptor }).ToList()
};

takes a very long time to execute.

Could someone please explain to me why this is and is there a more efficient way?

  • 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-25T23:46:25+00:00Added an answer on May 25, 2026 at 11:46 pm

    The problem is most likely related to your database somehow…

    As @geofftnz already have mentioned, then you should use a SQL profiler (ex. AnjLab Sql Profiler), and figure out what’s going on behind the scenes.

    The reason for that it’s not taking a long time for:

    var activities = ActivityRepository.GetAll().Where(x => x.AreaId == id);
    

    is that it’s not sending any queries to the database yet, because of the return type IEnumerable<Activity> (lazy).

    However when you do:

    var jsonData = new 
    { 
        rows = activities.Select(q => new 
        { 
            Id = q.Id.ToString(), 
            q.Descriptor 
        }).ToList() 
    };
    

    it will make up a query, and hit the database at .ToList() (eager).

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

Sidebar

Related Questions

i have a method like this: public JObject Get(int id) { return new JObject(new
If I have a method like this: public void DoSomething(int Count, string[] Lines) {
I have a method like this- public List<Apples> returnFruits(String arg1){ List<Apples> fruits = new
If I have a controller like this: [HttpPost] public JsonResult FindStuff(string query) { var
I have a method like below public List<aspnet_Roles> GetAllRoles() { var rolesList = _dbProfile.aspnet_Roles.ToList();
I am new to LINQ. I have a method like this: public bool IsNullOrEmptyDataTable(DataSet
Say I have a method like this*: public T GetItem(int index) { if (index
I have a method like this: public IOrganizationService GetConnection(bool multi) { if(!multi) { Parallel.For(0,
If I have a method signature like public string myMethod<T>( ... ) How can
Suppose I have a method like so: public byte[] GetThoseBytes() { using (System.IO.MemoryStream ms

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.