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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T09:18:31+00:00 2026-05-31T09:18:31+00:00

I recently came across following syntax of Entity Framework. Notice the where clause –

  • 0

I recently came across following syntax of Entity Framework. Notice the where clause –

.Where("it.LastName = @ln AND it.FirstName = @fn")

What does it. do? And why it instead of Contacts.LastName? Any detailed information will be helpful. Thanks in advance.

string firstName = @"Frances";
string lastName = @"Adams";

using (AdventureWorksEntities context =
    new AdventureWorksEntities())
{
    // Get the contacts with the specified name.
    ObjectQuery<Contact> contactQuery = context.Contacts
        .Where("it.LastName = @ln AND it.FirstName = @fn",
        new ObjectParameter("ln", lastName),
        new ObjectParameter("fn", firstName));

    // Iterate through the collection of Contact items.
    foreach (Contact result in contactQuery)
        Console.WriteLine("Last Name: {0}; First Name: {1}",
        result.LastName, result.FirstName);
}
  • 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-31T09:18:32+00:00Added an answer on May 31, 2026 at 9:18 am

    Based on this article, “it” refers to the ObjectQuery as a default name to be referencing parameters. By using the Name property of the ObjectQuery you can actually change it so that in your where clause it could be referenced as whatever name you wish it to be:

    ObjectQuery<Contact> contactQuery;
    contactQuery.Name = "contact";
    contactQuery = context.Contacts
      .Where("contact.LastName = @ln AND contact.FirstName = @fn",
       new ObjectParameter("ln", lastName),
       new ObjectParameter("fn", firstName));  
    

    Probably not exactly like what is shown above, but it gives the general idea.

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

Sidebar

Related Questions

I recently came across the following definition: <class name=X table=master..[User] ... /> what does
I recently came across the following piece of code. It doesn't look valid because
I recently had to debug a MachO binary and I came across the following
I recently came across the following line of code: var type = (typeof x).toLowerCase();
I was recently studying C# where i came across following for loop // Display
Recently I came across a character range that was the following: [/-+] My very
Recently, I was reading 2 books and I came across with the following statements
Recently I came across with the following quiz. Imagine we have this table +--------+
Recently I came across the following snippet, which is an attempt to ensure all
I came across the following code recently and would like to optimize it: Public

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.