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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 7, 20262026-06-07T15:16:47+00:00 2026-06-07T15:16:47+00:00

Here is a linq query that assigns data to a viewmodel. It works great.

  • 0

Here is a linq query that assigns data to a viewmodel. It works great.

var data = (from C in db.CaseComplaints
                    where C.CasesID == caseid
                    select C.ComplaintCode).ToList().Select(x => new CaseComplaintsViewModel()
                        {
                            ComplaintCode = x.ComplaintCodeName,
                            ComplaintType = x.ComplaintType
                        }).ToList();

Here is code that tries to perform a join and assign the data to a viewmodel. It does not work. the code editor tells me that x does not have a method or definition for BranchName

var data = (from branch in db.Branches
                    join customer in db.Customers 
                    on branch.BranchID equals customer.BranchID
                    where customer.BranchID == bid
                    select branch.BranchName).ToList().Select(x => new CaseResponsibleBranchViewModel()
                        {
                            BranchName = x.BranchName
                        });

What am I missing?

  • 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-07T15:16:49+00:00Added an answer on June 7, 2026 at 3:16 pm

    You’ve already selected BranchName, which I suppose is a string, so there’s no BranchName property of x:

    var data = (from branch in db.Branches
                        join customer in db.Customers 
                        on branch.BranchID equals customer.BranchID
                        where customer.BranchID == bid
                        select branch.BranchName).ToList().Select(x => new CaseResponsibleBranchViewModel()
                            {
                                BranchName = x
                            });
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Here is my LINQ query: (from o in entities.MyTable orderby o.MyColumn select o.MyColumn).Distinct(); Here
Here's a LINQ statement that I am trying to execute var usersQuery = from
here is my linq query: var test = from m in db.Members where m.UserId
I have a very simple linq query that gets data from two datatables (orderHeader
Here's the query I'm trying to convert into Linq: SELECT R.Code, R.FlightNumber, S.[Date], S.Station,
I asked a question here about an Linq error that results from mixing Linq-To-SQL
I need some help making a linq query that will select a list of
I have a LINQ query that returns data and I want to filter based
I'm trying to make a Linq query that will retrieve a string value from
I've got a LINQ query that looks like this (at the end): var query

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.