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

  • Home
  • SEARCH
  • 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 1002437
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T07:49:56+00:00 2026-05-16T07:49:56+00:00

Take a look at my code here: public static ItemType GetItem(int id) { ItemType

  • 0

Take a look at my code here:

public static ItemType GetItem(int id)
{
    ItemType it = new ItemType();
    using (var context = matrix2.matrix2core.DataAccess.Connection.GetContext())
    {
        var q = (from ci in context.Item
                 where ci.ID == id
                 let TemplateID = ci.TemplateID
                 let Groups = from x in context.CriteriaGroup
                              where x.TemplateID == TemplateID
                              select new
                              {
                                  x
                              }
                 let CriteriaItems = from x in context.CriteriaItem
                                     where Groups.Select(y => y.x.ID).Contains(x.CriteriaGroupID)
                                     select new
                                     {
                                         x
                                     }
                 select new
                 {
                     ci.ID,
                     ci.Name,
                     ci.CategoryID,
                     ci.Description,
                     ci.ItemValue,
                     TemplateID,
                     Groups,
                     CriteriaItems,
                     ItemValues = from x in context.ItemValue
                                  where x.ItemID == id
                                  select new
                                  {
                                      x,
                                      CriteriaID = x.CriteriaItem.Criteria.ID
                                  }
                 }).FirstOrDefault();

        if (q != null)
        {
            it.ID = q.ID;
            it.CategoryID = q.CategoryID;
            it.Name = q.Name;
            it.TemplateID = q.TemplateID;
            it.Description = q.Description;
            it.CriteriaGroups = new List<CriteriaGroupType>();
            it.CriteriaItems = new List<CriteriaItemType>();
            it.ItemValues = new List<ItemValueType>();

            foreach (var x in q.ItemValues)
            {
                ItemValueType ivt = new ItemValueType();
                ivt.CriteriaItemID = x.x.CriteriaItemID;
                ivt.CriteriaID = x.CriteriaID;
                ivt.Data = x.x.Data;
                ivt.ID = x.x.ID;
                ivt.ItemID = x.x.ItemID;
                it.ItemValues.Add(ivt);
            }

            /////////error when I added the orderby clause
            foreach (var x in q.Groups.OrderBy(x => x.x.SortOrder))
            {
                CriteriaGroupType cgt = new CriteriaGroupType();
                cgt.ID = x.x.ID;
                cgt.Name = !string.IsNullOrEmpty(x.x.Name) ? x.x.Name : "Group" + x.x.ID;
                cgt.SortOrder = x.x.SortOrder;
                cgt.TemplateID = x.x.TemplateID;
                it.CriteriaGroups.Add(cgt);
            }

            /////////error when I added the orderby clause 
            foreach (var temp in q.CriteriaItems.OrderBy(x => x.x.SortOrder))
            {
                CriteriaItemType cit = new CriteriaItemType();
                cit.ID = temp.x.ID;
                cit.CriteriaGroupID = temp.x.CriteriaGroupID;
                cit.GroupName = (temp.x.Name != null) ? temp.x.Name : "Group" + temp.x.ID;
                cit.CriteriaID = temp.x.CriteriaID;
                cit.CriteriaName = temp.x.Criteria.Name;
                cit.Name = !string.IsNullOrEmpty(temp.x.Name) ? temp.x.Name : temp.x.Criteria.Name;
                cit.Options = temp.x.Options;
                it.CriteriaItems.Add(cit);
            }
        }
    }
    return it;
}

Instead of letting SQL handle the sorting (OrderBy) I wanted asp.net to do the sorting instead. I took the sorting out of the SQL linq query and put it on the foreach loop. When I did that I got the error. Is there a way to fix this?

  • 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-16T07:49:56+00:00Added an answer on May 16, 2026 at 7:49 am

    You should be able to go from IQueryable to IEnumerable with a simple


    var q2 = q.ToList();

    What I meant of course was :

    var groups = q.Groups.ToList();
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Take a look at this code: public class Test { public static void main(String...
Please take a look at the following code: public static void main(String[] args) {
I have a code right below...take a look. enter.addActionListener(new ActionListener() { public void actionPerformed(ActionEvent
Hey guys, please take a look at my code and see what's wrong here.
take a look at this code: $(document).ready(function() { document.getElementById(sliderId).onmousedown = sliderMouseDown; }); function sliderMouseDown()
Take a look on this code, what I wrote: http://pastebin.com/TZpUAWpA , and this jQuery,
Take a look at my code example at js bin: http://jsbin.com/iritep/3/edit I'd like to
First take a look at my code: <ListBox ItemsSource={Binding} SelectionMode=Multiple ItemTemplate={StaticResource ContactTemplate}> <ListBox.ContextMenu> <ContextMenu>
Please take a look at this code: template<class T> class A { class base
Take a look that the following code snippet: A a = null try {

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.