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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 1, 20262026-06-01T13:51:50+00:00 2026-06-01T13:51:50+00:00

public class LearnerInfo { public string Id { get; set; } public string Name

  • 0
public class LearnerInfo
{
    public string Id { get; set; }
    public string Name { get; set; }


    public LearnerInfo(string id, string name)
    {
        this.Id = id;
        this.Name = name;
    }
}


public class LearnerCourse
{
    public string Id { get; set; }
    public string ExpiredCount { get; set; }
    public string Soonduecount { get; set; }
    public string Currentmonthcount { get; set; }
    public string Currentmonthplus1count { get; set; }
    public string Currentmonthplus2count { get; set; }
    public string Currentmonthplus3count { get; set; }
    public string Currentmonthplus4count { get; set; }
    public string Currentmonthplus5count { get; set; }
    public string Subtotal { get; set; }


    public LearnerCourse(string id, string exp, string soonDue, string current, string plus1, string plus2,
        string plus3, string plus4, string plus5)
    {
        this.Id = id;
        this.ExpiredCount = exp;
        this.Soonduecount = soonDue;
        this.Currentmonthcount = current;
        this.Currentmonthplus1count = plus1;
        this.Currentmonthplus2count = plus2;
        this.Currentmonthplus3count = plus3;
        this.Currentmonthplus4count = plus4;
        this.Currentmonthplus5count = plus5;
    }


    public LearnerCourse()
    { }
}

public class InfoList : IEnumerable<CombinedInfo>
{

    private List<CombinedInfo> _infoList = new List<CombinedInfo>();

    public InfoList()
    {
        _infoList = new List<CombinedInfo>();
    }


    public void Add(CombinedInfo i)
    {
        _infoList.Add(i);
    }


    public IEnumerator<CombinedInfo> GetEnumerator()
    {
        return _infoList.GetEnumerator();
    }


    //IEnumerable Members
    System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator()
    {
        throw new NotImplementedException();
    }
}


public class CombinedInfo
{
    public string Id { get; set; }
    public string ExpiredCount { get; set; }
    public string Soonduecount { get; set; }
    public string Currentmonthcount { get; set; }
    public string Currentmonthplus1count { get; set; }
    public string Currentmonthplus2count { get; set; }
    public string Currentmonthplus3count { get; set; }
    public string Currentmonthplus4count { get; set; }
    public string Currentmonthplus5count { get; set; }
    public string Name { get; set; }
}


    static void Main(string[] args)
    {
        LearnerCourse lc1 = new LearnerCourse("777", "1", "1", "0", "1", "0", "0", "0", "0");
        LearnerCourse lc2 = new LearnerCourse("589", "1", "0", "0", "0", "0", "0", "0", "0");

        LearnerInfo li1 = new LearnerInfo("777", "moe");
        LearnerInfo li2 = new LearnerInfo("589", "larry");

        LearnerCourse[] lCourses = new LearnerCourse[2];
        lCourses[0] = lc1;
        lCourses[1] = lc2;

        LearnerInfo[] linfos = new LearnerInfo[2];
        linfos[0] = li1;
        linfos[1] = li2;


        //test linq join for object array
        var myJoin = (from c in lCourses
                     join i in linfos on c.Id equals i.Id
                    select new {
                         c.ExpiredCount, 
                         c.Soonduecount,
                         c.Currentmonthcount,
                         c.Currentmonthplus1count,
                         c.Currentmonthplus2count,
                         c.Currentmonthplus3count,
                         c.Currentmonthplus4count,
                         c.Currentmonthplus5count,
                         c.Subtotal,
                         i.Id,
                         i.Name
                     });


        foreach (CombinedInfo o in l)
        {
            //loop through and can add to list of type CombinedInfo
        }
}

Instead of going through a foreach loop, i am having issues trying to get the result set from my linq query to just return a List.

suggestions?

  • 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-06-01T13:51:52+00:00Added an answer on June 1, 2026 at 1:51 pm

    Two things:

    a) Project to a custom class, not an anonymous type. In your case you already have CombinedInfo defined – use it.

    b) Use ToList() to force execution and convert the results to a List<T>

    var list = (from c in lCourses
                 join i in linfos on c.Id equals i.Id
                select new  CombinedInfo() {
                     ExpiredCount = c.ExpiredCount, 
                     Soonduecount = c.Soonduecount,
                     Currentmonthcount = c.Currentmonthcount,
                     Currentmonthplus1count = c.Currentmonthplus1count,
                     Currentmonthplus2count = c.Currentmonthplus2count,
                     Currentmonthplus3count = c.Currentmonthplus3count,
                     Currentmonthplus4count = c.Currentmonthplus4count,
                     Currentmonthplus5count = c.Currentmonthplus5count,
                     Subtotal = c.Subtotal,
                     Id  = i.Id,
                     Name = i.Name
                 }).ToList();
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

public class MyItem { public string Name { get; set; } public IList<MyItem> ListByName(string
public class Emp { public int ID { get; set; } public string Name
public class Address { public string ZipCode {get; set;} } public class Customer {
public class Foo { public string Bar {get; set;} } How do I get
public class FontType { ... public String Name { get { return _name; }
public class Abbreviation { public string ShortName { get; set; } public string LongName
public class IdAsync extends AsyncTask<String, Void, Void> { AlertDialog alertDialog = new AlertDialog.Builder(MainClass.this).create(); protected
public class BaseFoo { private string param; public BaseFoo(string param) { this.param = param;
public class Parent { private Integer Id; private String name; private String age; private
public class Client { public Int32 ClientID { get; set; } public virtual ICollection<Inquiry>

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.