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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 19, 20262026-05-19T04:59:44+00:00 2026-05-19T04:59:44+00:00

I’m simply trying to get data from two sql server db tables using ado.net

  • 0

I’m simply trying to get data from two sql server db tables using ado.net entity framework. My code is:

    using (Model.Entities e = new Model.Entities())
    { 
       return e.PAGE.First().CONTROL;
    }

The database is setup to have two tables, a control table which links to a page table via an ‘id’ field in the tables (control_id). There is one CONTROL object for each PAGE object.

I keep getting a null value for my return value and I know that’s not right.

I can use vis studio and breakpoints to see that there is a PAGE object in ‘e’ and I can see that there are multiple CONTROL objects in ‘e’. This isn’t a large database, I just have some sample data in there to ensure that I get this working – so I know that there should be a CONTROL object connected to this PAGE (i’ve verified this through sql server).

I am very familiar with the general code syntax, I’ve been using LINQ for a couple of years; however, I have not done much work at all with the entity framework or ado.net 4.

It seems like if I just pull individual table data then it works fine (i.e. e.PAGE.First() .. or .. e.CONTROL.Where(x=>x.someValue.Equals(‘someValue’) ) but if I try to pull by traversing through the tables then I get nothing back (NULL).

Hope that all makes sense.

  • 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-19T04:59:45+00:00Added an answer on May 19, 2026 at 4:59 am

    Some questions for you:

    • I assume is a 1..1 between PAGE and CONTROL,
    • Is there a FK called “ControlID” on PAGE?
    • Do you have a navigational property called “Control” on your “Page” entity in your EDMX?

    If the answer to all of the above is Yes, then this should work:

    var page = e.Pages.Include("Control").First();
    

    Here, you are returning the First “Page” record, and eager loading the associated control.

    The SQL produced should be something like this:

    SELECT p.*, c.*
    FROM Page p
    INNER JOIN Control c
    on p.ControlId = c.ControlId
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

No related questions found

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.