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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T20:37:42+00:00 2026-05-25T20:37:42+00:00

I have a Blogs table related to BlogComments table with a FK. I need

  • 0

I have a Blogs table related to BlogComments table with a FK.

I need to get, through Linq, all the BlogComments items that match a certain flag

If i do:

db.Blogs.Where(b => b.BlogComments.Where(bc=>bc.Where(bc.Flag1==true));

I get “Cannot implicity convert type IEnumerable to bool”

Which is the best way to solve this problem?

  • 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-25T20:37:42+00:00Added an answer on May 25, 2026 at 8:37 pm

    Because this expression:

    b.BlogComments.Where(...)
    

    returns an IEnumerable (of BlogComments), but you are then passing it into this method:

    db.Blogs.Where(...)
    

    which expects a function that returns a bool, not an IEnumerable.

    You probably need something like this:

    var blogId = 5;
    db.BlogComments.Where(bc => bc.BlogId == blogId && bc.Flag1 == true)
    

    If you need to select comments from multiple blogs, then you could try using Contains:

    var blogIds = new [] {1,2,3,4,5};
    db.BlogComments.Where(bc => blogIds.Contains(bc.BlogId) && bc.Flag1 == true)
    

    If you want to place criteria on the set of blogs, as well as the comments, then you could do this in one query using a join:

    var query = from b in db.Blogs
                join c in db.BlogComments on c.Blog equals b
                where b.SomeField == "some value"
                && c.Flag1 == true
                select c;
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have two different tables from which I need to pull data blogs which
Say that I have many blogs, and each blog has_many posts. These are stored
Consider the apps that large blogs have (which work pretty much like an RSS
This is a followup to: MySQL - Is it possible to get all sub-items
I have 2 tables with a relation between them: Users table: user_id, Blogs table:
Currently have : LOAD DATA LOCAL INFILE '/Users/RkG/Desktop/Microblogs.csv' INTO TABLE blogs This is an
I have two tables: one that stores blogs and the other that stores images
I have a table Blog belongs to User through user_id. I'm using thinking sphinx
I have a LinkTable named: BlogsBlogPosts that relates two other tables named: Blogs and
I have a comments table for blogs, articles, profiles. A comments table could be

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.