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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 7, 20262026-06-07T21:51:40+00:00 2026-06-07T21:51:40+00:00

I generated my entities via the DbContext generator, and added it to an API

  • 0

I generated my entities via the DbContext generator, and added it to an API controller that uses my entities context model. The following method fails to compile though:

public IEnumerable<casino> Getcasinos()
    {
        var casinos = db.casinos.Include(c => c.city).Include(c => c.state);
        return casinos.AsEnumerable();
    }

The compiler says:

Cannot Convert Lambda Expression to Type 'String' Because It Is Not A Delegate Type

Any ideas why it is saying this? I have the System.Linq namespace imported.

  • 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-07T21:51:42+00:00Added an answer on June 7, 2026 at 9:51 pm

    This actually happens because of the ObjectQuery(T).Include method. This has the function signature:

    public ObjectQuery<T> Include(string path);
    

    The reason why you’re seeing that is probably because wherever you’re calling it does not have the System.Data.Entity namespace available. From the DbExtensions metadata you can see that the Include using an expression requires the System.Data.Entity namespace:

    namespace System.Data.Entity
    {
        [SuppressMessage("Microsoft.Naming", "CA1709:IdentifiersShouldBeCasedCorrectly", Justification = "Casing is intentional")]
        public static class DbExtensions
        {
            public static IQueryable<T> Include<T, TProperty>(this IQueryable<T> source, Expression<Func<T, TProperty>> path) where T : class;
            public static IQueryable<T> Include<T>(this IQueryable<T> source, string path) where T : class;
            public static IQueryable Include(this IQueryable source, string path);
        }
    }
    

    If you include the System.Data.Entity namespace, the error will resolve.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have several entities generated from my Entity Framework data model. In the .edmx
I have generated Entities files, Proxies files and Tables/fields in database via .yml file
How could I map my Linq-to-Sql generated entities (DTO’s) to my domain entities? The
I'm having issues deserializing certain Guid properties of ORM-generated entities using protobuf-net. Here's a
I generated a new form using sean-gen (seam new-form) and added another field to
I am trying to design an entity model using JPA2.0 via hibernate. I have
I am developing using zend framework and doctrine2.1. I have generated entities from database.
I'm using EntityFramework via DbContext and an Exisiting Database. When I Add an Order
I created a data model in Xcode with about 9 entities, all of which
I have a problem when sending Entity Framework-generated entities with navigation properties over WCF.

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.