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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 4, 20262026-06-04T18:33:49+00:00 2026-06-04T18:33:49+00:00

In my EntityFramework I have three associated tables like so: I’m trying to get

  • 0

In my EntityFramework I have three associated tables like so:

In my EntityFramework I have three associated tables like so:

I’m trying to get the last time a file was used on a job. I have a value for File.Name and I need to get the maximum value for Job.ExecutedOn. I can obtain the File.FileId with a where clause, then in a separate expression get a list of FileHistory.JobId, then finally in a third expression get the maximum of Job.ExecutedOn. It feels very clumsy.

I was hoping for a single expression that accepts a value for File.Name and traverses across the tables to return the maximum value for Job.ExecutedOn. Is this possible? How?

  • 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-04T18:33:53+00:00Added an answer on June 4, 2026 at 6:33 pm

    This should do the trick

     DateTime GetLastExecutionTime(ObjectContext context, string fileName)
     {
        var query = from file in context.Files
                        join history in context.FileHistories 
                            on file.FileID equals history.FileID
                        join job in context.Jobs 
                            on history.JobID equals job.JobID
                        where file.FileName == fileName
                        select job.ExecutedOn;
    
        var result = query.Max();
     }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

At my current job I have implemented the Repository/UoW patterns on top of EntityFramework
I have three tables viz: Person(PersonID(INT), Personname(varchar)) , Items(ItemID(INT), Itemname(varchar)) and PersonItemAssoc(PersonItemAssoc(Int), PersonID(INT), ItemID(INT)).
I have three tables in my sample database: Users ID Username Password Roles ID
I'm using Entity Framework 4.1 Code First. In my entity, I have three date/time
I have three tables I'm getting info from: User, Field, FieldUserInput. I already know
I have an issue in entity framework code first, three table in database as
i have probleme with entityframework code first , when i execute my app and
I have a web-application: ExtJs frontend - EntityFramework + SQL Server as a backend.
I have a WCF service that processes some messages. I use EntityFramework to retrieve
I'm new to Entity Framework and have come across a problem while trying to

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.