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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T19:23:15+00:00 2026-05-31T19:23:15+00:00

i am using esql to select by using entity framework Here is my coding

  • 0

i am using esql to select by using entity framework
Here is my coding

        using (ObjectContext ctx = new ObjectContext("Name=LEWREDBEntities"))
        {
            string result = "select articleDetail.*, master_project_category.CATEGORY_NAME as category2 ";
            result += " from( ";
            result += "         select lewre_article.ARTICLE_NUMBER, ";
            result += "         lewre_article.REFERENCE_NUMBER, ";
            result += "         lewre_article.ARTICLE_ID, ";
            result += "         master_product_category.CATEGORY_ID, ";
            result += "         master_product_category.CATEGORY_NAME, ";
            result += "         master_product_category.P_CATEGORY_ID, ";
            result += "         lewre_article.PROJECT_ID,  ";
            result += "         lewre_project.PROJECT_NAME, ";
            result += "         master_product_type.PRODUCT_TYPE_NAME, ";
            result += "         master_brand.BRAND_NAME, ";
            result += "         lewre_article.PRODUCT_CATEGORY_ID, ";
            result += "         lewre_article.PRODUCT_TYPE_ID, ";
            result += "         lewre_article.BRAND_ID, ";
            result += "         lewre_article.STATUS, ";
            result += "         lewre_article_img.SAMPLE_IMG_CONTENT_TYPE, ";
            result += "         lewre_article_img.SAMPLE_IMG, ";
            result += "         minMaxSize.maxSize, ";
            result += "         minMaxSize.minSize ";

            result += "from( ";
            result += "     select lewre_article.ARTICLE_ID, MIN(lewre_product.SIZE) as minSize , MAX(lewre_product.SIZE) as maxSize";
            result += "     from LEWREDBEntities.[LEWRE_ARTICLE] as lewre_article, ";
            result += "     LEWREDBEntities.[LEWRE_PRODUCT]as lewre_product";
            result += "     where lewre_article.ARTICLE_ID  = lewre_product.ARTICLE_ID";
            result += "     group by lewre_article.ARTICLE_ID";
            result += " ) as minMaxSize, ";

            result += "   LEWREDBEntities.[LEWRE_ARTICLE] as lewre_article ,";
            result += "   LEWREDBEntities.[LEWRE_PROJECT]  as lewre_project,";
            result += "   LEWREDBEntities.[MASTER_PRODUCT_TYPE] as master_product_type,";
            result += "   LEWREDBEntities.[MASTER_PRODUCT_CATEGORY] as master_product_category,";
            result += "   LEWREDBEntities.[MASTER_BRAND] as master_brand,";
            result += "   LEWREDBEntities.[LEWRE_ARTICLE_IMG] as lewre_article_img";

            result += " where lewre_article.PROJECT_ID  = lewre_project.PROJECT_ID ";
            result += " and lewre_article.PRODUCT_TYPE_ID = master_product_type.PRODUCT_TYPE_ID ";
            result += " and lewre_article .PRODUCT_CATEGORY_ID = master_product_category.CATEGORY_ID ";


            result += " and lewre_article.BRAND_ID = master_brand.BRAND_ID ";
            result += " and lewre_project.STATUS ='U' ";
            result += " and lewre_article_img.ARTICLE_ID = lewre_article.ARTICLE_ID ";

            result += " and lewre_article_img.IMG_DEFAULT = TRUE ";
            result += " and lewre_article_img.STATUS ='A'  ";
            result += " ) as articleDetail ";

            result += " inner join LEWREDBEntities.[MASTER_PRODUCT_CATEGORY]as master_project_category on ArticleDetail.P_CATEGORY_ID = master_project_category.CATEGORY_ID  ";
            result += " ";
            result += " ";

            ObjectQuery<DbDataRecord> query = ctx.CreateQuery<DbDataRecord>(result);
            string abc = query.ToTraceString();
            //foreach (DbDataRecord rec in query)
            //{

            //}
        }

How can i get the articleDetail.* value? I get the error
“The query syntax is not valid. Near term ‘*’, line 1, column 39.”
Please help me. thank you

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

    Use only the name of the alias, without the *

      select articleDetail, master_project_category....
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

When using the Entity Framework, does ESQL perform better than Linq to Entities? I'd
I'm in VS2008 with Entity Framework. I'm accessing objects from the database using esql
When using traditional Entity Framework and querying with ESQL, you can use OFTYPE with
I am using Entity Framework with my website. To improve performance, I have started
Using Entity Framework CodeFirst, how do I create a created datetime column that gets
using (var file_stream = File.Create(users.xml)) { var serializer = new XmlSerializer(typeof(PasswordManager)); serializer.Serialize(file_stream, this); file_stream.Close();
Using linq2sql I'm trying to take the string in txtOilChange and update the oilChange
I'm using ObjectQuery.CreateQuery() to create eSQL query. I want to use the ObjcetQuery.Include to
Using CRM 4, I have an entity form that contains a tab with an
Using Ivy with this Ant target: <target name=retrieve-jars> <ivy:retrieve pattern=WebContent/WEB-INF/lib/[artifact].[ext] /> </target> to fetch

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.