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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T05:04:37+00:00 2026-05-23T05:04:37+00:00

OK, here is the issue. I have a table (actually a view, but it

  • 0

OK, here is the issue.

I have a table (actually a view, but it is irrelevant) containing the price for an item on a time. Fields:

  • ItemName
  • Price
  • Timestamp.

There are additional fields in this, that also must be accessible. Stuff like column and some calculated numbers. This is basically an object with fields, we have quite a long table (millions of rows).

I need to join a list of item names with their most current price, and I want to do so in linq. In pure SQL this already is not fun. I basically look for a “view” (IQueryable for further merging) definition that only contains the most current object for a given item name. This then allows to use a JOIN statement with another filtered table (list of items for which to show the price). The db design is fixed third party so this problem can not be avoided by redesign.

In pure SQL I Would define a query containing ItemName and Max(Timestamp) (Group by ItemName) then Self-Join with the same table to get the other fields in for the exact timestamp.

Any idea how to approach this best in LINQ? Lambda please, i don’t like the sql style syntax.

  • 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-23T05:04:38+00:00Added an answer on May 23, 2026 at 5:04 am

    In Linq-to-objects I would try this:

    prices
        .GroupBy(p => p.ItemName)
        .Select(g => new {
                             Item = g.Key, 
                             LatestPrice = g.OrderByDescending(p => p.Timestamp).First()
                         });
    

    Though I’m not sure whether it will be mapped correctly to SQL.

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

Sidebar

Related Questions

I'm seeing basically the same issue described here I have a table that starts
Having an issue here that I have tried everything I can think of but
Here's the issue: I have a hook in IE that reacts on WebBrowser.OnNavigateComplete2 event
Here's the issue: I have 2 data contexts that I would like to do
Here's the issue: I have a list of App names that I want to
So I'm not to OOP in PHP. Here is my issue I have a
I have a rather annoying issue here I can't get my CheckBox CheckedChange event
I have a curious issue here In my ejbCreate() method from where i insert
Hey guys I have a little issue here. I have a panel where I
hello fellow java developers. I'm having a bit of an issue here. I have

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.