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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 21, 20262026-05-21T04:41:16+00:00 2026-05-21T04:41:16+00:00

Here are the tables: I need to retrieve a collection of Student objects, so

  • 0

Here are the tables:

enter image description here

I need to retrieve a collection of Student objects, so I can access their names, last names, etc.

I’m kind of stuck so any help is very welcome, I’m always trying to learn and apply new things to make them stick. 🙂

So far, I’ve tried this:

private void cmbGradeParalelo_SelectedIndexChanged(object sender, EventArgs e)
{
    int gradeParaleloId = Convert.ToInt32(cmbGradeParalelo.SelectedValue);

    using (StudentRepository studentRepo = new StudentRepository())
    {
        studentRepo.FindAllStudents().Where(s => s.GradeStudents
    }
}

.GradeStudents is an EntityCollection<GradeStudent> so I think I can query the data using Linq, but I don’t know how. I’ve never done something like this. 🙂

Thank you for your time!

  • 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-21T04:41:17+00:00Added an answer on May 21, 2026 at 4:41 am

    Yes, you can query with Linq. There is one beginner caveat, though, that being the need for Include:

    Context.Students
           .Include("GradeStudents")
           .Include("GradeStudents.GradeParalelo")
           .First<Student>(s => s.StudentId == 1)
           .GradeStudents
    

    etc.

    If you provide a little more information on what you are trying to do, I might be more help.

    Note also that if your join table (GradeStudents) did not have extra columns, it would be an Assocation, and you would have access to GradeParalelo directly from Student.

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

Sidebar

Related Questions

I need to make a synonym search function, using MySQL. Here is the tables
Basically I need to reset Identity Increment for all tables to its original. Here
I need to retrieve change-data-capture rows for several tables, and I'm required (by company
I'm in need of some basic TSQL help. Here's my table layout: Orders Table
Here is my predicament. Basically, I need a column in a table to hold
i have day, month, year, value columns in one table, here i need to
I have a question. I have here 2 tables table 1 : products product_id
Here are my tables in mysql: ----------------1------------------------- +---------------------------+----------+ | email | attempts | +---------------------------+----------+
Please look at this image here is 3 tables , and out i want
here is my 3 tables: table 1 -- stores user information and it has

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.