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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 4, 20262026-06-04T01:22:21+00:00 2026-06-04T01:22:21+00:00

I am having some trouble with a linq query var matches = from po

  • 0

I am having some trouble with a linq query

var matches = from po in purchaseOrders
          from poItem in po.Items
          where TestMatch(poItem)
          select new Item(poItem);

purchaseOrders is a List
Each PurchaseOrder contains a List

What I need for a result, is the first poItem that matches (based on the result of TestMatch(poItem)) in each purchase order, OR a blank Item object.

So that in the end matches.Count == purchaseOrders.Count

Currently, I only get items that match in a PO, and I’m not sure how to ensure I only get ONE item per PO. And I don’t know how to ensure if there is no match, that I get a blank Item for that PO.

  • 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-06-04T01:22:22+00:00Added an answer on June 4, 2026 at 1:22 am

    It sounds like you want something like:

     var matches = from po in purchaseOrders
                   let poItem = po.Items.FirstOrDefault(item => TestMatch(item))
                   select new { PO = po, 
                                Item = poItem == null ? null : new Item(poItem) };
    

    With C# 4 you can use a method group conversion for the argument to FirstOrDefault:

     var matches = from po in purchaseOrders
                   let poItem = po.Items.FirstOrDefault(TestMatch(item)
                   select new { PO = po, 
                                Item = poItem == null ? null : new Item(poItem) };
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm new to linq and having trouble writing two simple queries. For some reason,
I am having some trouble with a linq query I am trying to write.
I am having some trouble with a LINQ to dataset query. I have the
Having some trouble getting this query to work correctly. mysql_query(DELETE FROM `table` WHERE `id`
I am having some trouble with a linq query I am trying to write.
Im having some trouble with a linq query into an xml tree. Here is
I'm new to LINQ , and I'm having trouble organizing this query to return
I'm having some trouble with a linq query. It's a simple problem, but I'm
I'm having trouble converting the following SQL-statement to LINQ-to-entities: SELECT l.* FROM locations l
Having some trouble issuing a simple query from the PHP Mongo driver. This is

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.