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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T12:31:03+00:00 2026-05-16T12:31:03+00:00

I’m working on a .NET 4 application, C#, Entity Framework 4, SQL Server 2008.

  • 0

I’m working on a .NET 4 application, C#, Entity Framework 4, SQL Server 2008.

I have a 7 tables in my database, each representing a specific level of location (Country, State, City, Neighborhood, etc).

Now in my Repository I am trying to define an interface contract which has only one Find() method. To do this, I’ve created an abstract class called “Location” for which the POCO locations all inherit from.

Here’s the method I currently have:

public IQueryable<Location> Find()
{
   return AllCountries()
             .Union(AllStates())
             .Union(AllCounties())
             .Union(AllCities())
             .Union(AllNeigbourhoods())
             .Union(AllZipCodes())
             .Union(AllStreets());
}

Those inline methods (e.g AllStates) are private IQueryable methods, e.g:

private IQueryable<Location> AllCountries()
{
   var db = new MyCustomDataContext();
   return db.Countries;
}

This all works fine, but I don’t like the look of the code in the Find() method.

Essentially, I want a Repository method which returns all Countries/Cities/States etc (as an IQuerable<Location>).

That way, my service layer can do this:

var countries = repository.Find(somePredicate).OfType<Country>().ToList();

Or this:

var countries = repository.Find(somePredicate).OfType<City>().ToList();

So I only ever have to declare one Find method. You can think of the Location class as my “aggregate root”.

Without using an abstract class, this is what my repository contract would look like:

IQueryable<City> FindCities();
IQueryable<State> FindStates();
IQueryable<Country> FindCountries();
 ....

Yuck!

This is what my repository contract currently looks like (and I want to keep it this way):

IQueryable<Location> Find();

So, any better ideas than having all those union’s? An IQueryable<T> extension method which can dynamically chain on multiple IQueryable’s?

Remembering I also have a Service Layer which performs the filtering/collection projection (delayed execution). The repository needs to return “queries”, not concrete collections.

Appreciate the help.

  • 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-16T12:31:03+00:00Added an answer on May 16, 2026 at 12:31 pm

    I’m assuming that the same logical entity won’t exist in two separate tables (e.g., a “city” is not a “state”). In that case, you’d be better suited to use Concat rather than Union.

    A brief helper method will make the call look nicer (warning: untested):

    // (Defined in the static class MyHelpers)
    // Concatenate all sequences into one.
    public IQueryable<T> ConcatAll<T>(this IQueryable<T> first,
        params IQueryable<T>[] others)
    {
      var ret = first;
      foreach (var other in others)
      {
        ret = ret.Concat(other);
      }
    
      return ret;
    }
    
    ...
    
    public IQueryable<Location> Find() 
    {
      return MyHelpers.ConcatAll(
        AllCountries(),
        AllStates(),
        AllCounties(),
        AllCities(),
        AllNeigbourhoods(),
        AllZipCodes(),
        AllStreets());
    
      // OR:
    
      return AllCountries().ConcatAll(
        AllStates(),
        AllCounties(),
        AllCities(),
        AllNeigbourhoods(),
        AllZipCodes(),
        AllStreets());
    } 
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a string like this: La Torre Eiffel paragonata all&#8217;Everest What PHP function
I have a view passing on information from a database: def serve_article(request, id): served_article
I have a reasonable size flat file database of text documents mostly saved in
I have a .ini file as follows: [playlist] numberofentries=2 File1=http://87.230.82.17:80 Title1=(#1 - 365/1400) Example
link Im having trouble converting the html entites into html characters, (&# 8217;) i
I have just tried to save a simple *.rtf file with some websites and
I have a jquery bug and I've been looking for hours now, I can't
Basically, what I'm trying to create is a page of div tags, each has
this is what i have right now Drawing an RSS feed into the php,
I have this code to decode numeric html entities to the UTF8 equivalent character.

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.