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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 22, 20262026-05-22T14:45:53+00:00 2026-05-22T14:45:53+00:00

I have a library which uses EF4 for accessing a SQL Server data store.

  • 0

I have a library which uses EF4 for accessing a SQL Server data store. For different reasons, I have to use SQL Server specific syntax to read data from the store (for free text search), so I have to create the SQL code by hand and send it through the ExecuteStoreQuery method.

This works fine, except that the query uses joins to request several tables aside the main one (the main one being the one I specify as the target entity set when calling ExecuteStoreQuery), and EF never fills up the main entity’s relationship properties with the other table’s data.

Is there anything special to do to fill up these relationships? Using other EF methods or using special table names in the query or something?

Thanks for your 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-22T14:45:53+00:00Added an answer on May 22, 2026 at 2:45 pm

    Ok so I’ll write here what I ended up doing, which does not looks like a perfect solution, but it does not seem that there is any perfect solution in this case.

    As Ladislav pointed out, the ExecuteStoreQuery (as well as the other “custom query” method, Translate) only maps the column of the entity you specify, leaving all the other columns aside. Therefore I had to load the dependencies separately, like this :

    // Execute    
    IEnumerable<MainEntity> result = context.ExecuteStoreQuery<MainEntity>(strQuery, "MainEntities", MergeOption.AppendOnly, someParams).ToArray();
    
    // Load relations, first method
    foreach (MainEntity e in result)
    {
        if (!e.Relation1Reference.IsLoaded)
            e.Relation1Reference.Load();
        if (!e.Relation2Reference.IsLoaded)
            e.Relation2Reference.Load();
        // ...
    }
    
    // Load relations, second method
    // The main entity contains a navigation property pointing 
    // to a record in the OtherEntity entity
    foreach(OtherEntity e in context.OtherEntities)
        context.OtherEntities.Attach(e);
    

    There. I think these two techniques have to be chosen depending on the number and size of generated requests. The first technique will generate a one-record request for every required side record, but no unnessecary record will be loaded. The second technique uses less requests (one per table) but retrieves all the records so it uses more memory.

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

Sidebar

Related Questions

I have 'inherited' a test harness application which uses Enterprise Library for its SQL
I have kind of library which uses a bunch of its own perf counters.
I have a project which uses a large library residing in its own repository.
I have an app which uses a keyboard hook procedure in a library. The
I have a web application that uses a library which resides in TOMCAT_HOME/common/lib. This
I have a piece of code in ANSI C which uses the time.h library
Is it possible to have a C static library API, which uses C++ internally
I have a c-library which I use in gcc. The library has the extension
I have a class library project which uses a namespace (e.g., Cosmos.Creator.Util). I then
I have static library and another program which uses it. In the static library

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.