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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T02:07:05+00:00 2026-05-30T02:07:05+00:00

I have a view and entity var q = from stud in context.CollegePlans where

  • 0

I have a view and entity

          var q = from stud in context.CollegePlans                                       
                 where stud .Meta.Active == true &&
                stud .CreatedBy_Id == user.Id
                select stud ;

        var k = from nv in context.vw_Year_Plans 
                 where ( nv.StudentId == q.Where( p => p.Section.StudentId))
                select nv;

studenId is Guid in both view and in entity..when i do the above it says cannot implictly convert system.Guid ? to bool ..how to overcome this ?

  • 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-30T02:07:06+00:00Added an answer on May 30, 2026 at 2:07 am

    The expression evaluated by Where needs to evaluate to a boolean value.

    where ( nv.StudentId = q.Where( p => p.Section.StudentId))
    

    In this case, you have given it a Guid. That is where the error is coming from. I think you would have problems with that line even if the Where predicate was valid. From the looks of it, you want to want all of the StudentIds in context.vw_Year_Plans that are also in q.

    A simple way to do that is to create an intermediate collection of the ids in q for comparison purposes.

    var temp = q.Select(a => a.Section.StudentId);
    

    Then see if each StudentId is also in context.vw_Year_Plans

    var k = from nv in context.vw_Year_Plans
            where (temp.Contains(nv.StudentId)) 
            select nv;
    

    There are better ways to solve this issue, but this should get you going.

    EDIT

    You mentioned using join in your comment. I haven’t tested either of these solutions but this should be what you need. If you are still having problems, update your question with more specific details on the issues you are facing.

    var k = from nv in context.vw_Year_Plans
            join p in q on nv.StudentId equals p.Section.StudentId  
            select nv;
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a WPF view that displays a Shipment entity. I have a textblock
Using ASP MVC and Entity Framework. In the view, you have a page declaration
i have view like 'home/details/5', it can be access by anonymous user. but there
I have a view user control that can post form. This control can be
I have a ListView which I filled in from SQL Server view called view_ListaKlientow
Here is a common scenario I Have these Entity User UserId UserName ... UserQuestion
I have an application that I have written to view logs from custom applications
I have view controller, into the view i have put a table view, and
I have a view that has a list of jobs in it, with data
I have a view using a master page that contains some javascript that needs

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.