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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T15:25:30+00:00 2026-05-27T15:25:30+00:00

I have a class that returns a list of Regions in a database using

  • 0

I have a class that returns a list of Regions in a database using Linq to SQL (passing a RegionName and RegionID variable). The issues comes when I am trying to fetch the data within. I can see the values when I am debugging the code (come out looking like this: {RegionID = 1, RegionName = “Asia”}). That is also when using a foreach loop to look at each item/row that was returned.

Any ideas on how to break these down so I can grab the values for each?

Here is the LINQ statement that is being used:

return (from r in db.Regions
        join c in db.Countries on r.RegionID equals c.RegionId
        join i in db.Programs on c.CountryID equals i.CountryID
        select new { r.RegionID, r.RegionName })
        .Distinct();
  • 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-27T15:25:31+00:00Added an answer on May 27, 2026 at 3:25 pm

    If you are returning your resulting sequence from one method to another, go ahead and define a proper type.

    public class RegionData // or whatever is appropriate
    {
         public int RegionID { get; set; }
         public string RegionName { get; set; } 
    }
    

    And modify your query to select RegionData

     select new RegionData 
     { 
          RegionID = r.RegionID,
          RegionName = r.RegionName 
     }
    

    And your method should return IEnumerable<RegionData>.

    IEnumerable<RegionData> GetRegionData(/* parameter list */) {
    

    This will give your compile time access to the properties when you need to iterate over the sequence elsewhere in your code. Anonymous types are useful, but when you start passing them around, it’s time to give turn them into a defined type.

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

Sidebar

Related Questions

I have class method that returns a list of employees that I can iterate
I have an ASP.NET WebService that returns an object of List public class Students
I have a class that returns all items in a database table (Code below).
I have a function inside a class that returns a reference to a member
I have a class that has an output() method which returns a matplotlib Figure
I have a utility class that creates & returns a db connection: Public Shared
I have a factory that returns an interface FormatService : public class FormatServiceFactory {
I have a factory class, DocumentLoaderFactory , which simply returns an instance that implements
I have a static method that takes a parameter and returns a class. the
I currently have a class that uses the KeyValuePair with List to store a

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.