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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 11, 20262026-06-11T06:33:52+00:00 2026-06-11T06:33:52+00:00

With SQL I would do the following… SELECT G.* FROM GOAL G INNER JOIN

  • 0

With SQL I would do the following…

SELECT G.* FROM GOAL G
INNER JOIN Plan P ON
P.planID = G.planID
INNER JOIN User U ON
U.userID = P.userID
WHERE U.userID = @userID

In my Controller (MVC4) "ActionResult Edit" Im doing the following, which is two queries, how could I do just one? The goal is to make sure the user is only able to do the “Edit” action on their own data vs. someone else’s goal.

var plan = db.Plan.Where(b => b.UserID == CurrentUserID).FirstOrDefault();
Goal goal = db.Goals
            .Where(b => b.PlanID == plan.ID)
            .FirstOrDefault();
return View(goal);

Model

public class Plan
{
    public int ID { get; set; }
    [Required]
    public int UserID { get; set; }
}
[Table("PlanGoal")]
public class Goal
{
    public int ID { get; set; }

    [Required]
    public int PlanID { get; set; } 
}
  • 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-11T06:33:54+00:00Added an answer on June 11, 2026 at 6:33 am

    Or you could join Goals and Plan together instead of adding a property to your Goal class:

    Goal goal = (from g in db.Goals
                from p in db.Plan
                where p.UserID == CurrentUserID
                 && g.PlanID == p.ID
                select g).FirstOrDefault();
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

The SQL would be something like select GeneralData.id, GeneralData.name, GeneralData.last_name, Student.id from GeneralData Inner
I would like to run the following SQL select: SELECT ID, NUMERATOR, (SELECT m.COLUMNNAME
I would like to use following sql to avoid constructing sql dynamically: SELECT CommentID,
How would do the following in SQL select dept names who have more than
How would the following sql statement translate to a linq query? select ID, Price,
How would the following sql query look when translated to linq? SELECT myId, Count(myId)
Just wondering how the following sql query would look in linq for Entity Framework...
I would like to write the following SQL in HQL so it executes as
Given the following schema / data / output how would I format a SQL
I would like to create a LINQ query which results in the following SQL

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.