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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T06:05:11+00:00 2026-05-26T06:05:11+00:00

I have the syntax below. I have set up sql constraints (i.e. foreign key

  • 0

I have the syntax below. I have set up sql constraints (i.e. foreign key relationships in the data model, etc..). I am wondering how I can write this statement using a lambda expression. Is it possible? I have read articles about eager loading, but not sure how that would apply and if I can write the query more concise?

var nominations = from n in ctx.Nominations
                              join c in ctx.Nominees
                              on n.NominationId equals c.NominationId
                              where c.NomineeADUserName == UserName
                              select n;
  • 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-26T06:05:12+00:00Added an answer on May 26, 2026 at 6:05 am

    You can write the same query using Method syntax as follows:

    ctx.Nominations.Join(ctx.Nominees, 
                         n=>n.NominationId, 
                         c=>c.NominationId, 
                         (n,c)=>new {c, n})
                   .Where(x=>x.c.NomineeADUserName == Username)
                   .Select(x.n);
    

    I think its important to make it readable rather than concise. Your version is more readable.

    Also whether you write method syntax or query syntax, the query will be evaluated in lazy fashion. If you want you can force eager loading by calling ToList() at the end of either query.

    If you want to also load the navigation properties (related entities) then you have to call the Include method EntitySet before making it part of query

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

Sidebar

Related Questions

I have a very complex Linq to SQL query that returns a result set
I want to build an notepad-style application on android that will have syntax highlighting.
I have a syntax highlighting function in vb.net. I use regular expressions to match
I have this syntax which works (since it's from the API, pretty much) <%
I have seen this syntax in MSDN: yield break , but I don't know
I have a such syntax in program /* The Object1 is allowed to be
In my work I have come across syntax like global:: (C#) or G:Loading($value) in
I'm sure I have seen this syntax <%= Url.Action((MyController c) => c.MyMethod(a)) %> or
I want to print from a servlet. I believe I have the correct syntax.
I have a CMS that uses a syntax based on HTML comments to let

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.