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

The Archive Base Latest Questions

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

I’m trying to generate this basic SQL statement using Query Expressions: SELECT * FROM

  • 0

I’m trying to generate this basic SQL statement using Query Expressions:

SELECT *
FROM contact
INNER JOIN businessunit on contact.businessunitid = businessunit.businessunitid
INNER JOIN new_example on businessunit.new_exampleid = new_example.new_exampleid

Using this Query Expression Test:

var query = new QueryExpression("contact");
var bu = query.AddLink("businessunit", "businessunitid", "businessunitid");
var buChildLink = bu.AddLink("new_example", "new_exampleid", "new_exampleid");

Assert.AreEqual("businessunit", buChildLink.LinkFromEntityName); // Fails. Actual value is "contact"

The fix is to not use the AddLink method, but create the LinkEntity where you specify the LinkFromEntityName, but am I wrong in thinking this is a bug?

  • 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-07T11:40:32+00:00Added an answer on June 7, 2026 at 11:40 am

    I’ve created an overloaded generic AddChildLink method that correctly handles this issue so that the link gets added correctly within the query expression. I’ve also added some overloads that default some of the parameters.

    /// <summary>
    /// Created do to possible bug (http://stackoverflow.com/questions/10722307/why-does-linkentity-addlink-initialize-the-linkfromentityname-with-its-own-lin)
    /// Adds the new LinkEntity as a child to this LinkEnity, rather than this LinkEntity's LinkFrom Entity
    /// Assumes that the linkFromAttributeName and the linkToAttributeName are the same
    /// </summary>
    /// <param name="link"></param>
    /// <param name="linkToEntityName"></param>
    /// <param name="linkAttributesName"></param>
    /// <returns></returns>
    public static LinkEntity AddChildLink(this LinkEntity link, string linkToEntityName, string linkAttributesName)
    {
        return link.AddChildLink(linkToEntityName, linkAttributesName, linkAttributesName);
    }
    
    /// <summary>
    /// Created do to possible bug (http://stackoverflow.com/questions/10722307/why-does-linkentity-addlink-initialize-the-linkfromentityname-with-its-own-lin)
    /// Adds the new LinkEntity as a child to this LinkEnity, rather than this LinkEntity's LinkFrom Entity
    /// Assumes that the linkFromAttributeName and the linkToAttributeName are the same
    /// </summary>
    /// <param name="link"></param>
    /// <param name="linkToEntityName"></param>
    /// <param name="linkAttributesName"></param>
    /// <param name="joinType"></param>
    /// <returns></returns>
    public static LinkEntity AddChildLink(this LinkEntity link, string linkToEntityName, string linkAttributesName, JoinOperator joinType)
    {
        return link.AddChildLink(linkToEntityName, linkAttributesName, linkAttributesName, joinType);
    }
    
    /// <summary>
    /// Created do to possible bug (http://stackoverflow.com/questions/10722307/why-does-linkentity-addlink-initialize-the-linkfromentityname-with-its-own-lin)
    /// Adds the new LinkEntity as a child to this LinkEnity, rather than this LinkEntity's LinkFrom Entity
    /// </summary>
    /// <param name="link"></param>
    /// <param name="linkToEntityName"></param>
    /// <param name="linkFromAttributeName"></param>
    /// <param name="linkToAttributeName"></param>
    /// <returns></returns>
    public static LinkEntity AddChildLink(this LinkEntity link, string linkToEntityName,
        string linkFromAttributeName, string linkToAttributeName)
    {
        return link.AddChildLink(linkToEntityName, linkFromAttributeName, linkToAttributeName, JoinOperator.Inner);
    }
    
    /// <summary>
    /// Created do to possible bug (http://stackoverflow.com/questions/10722307/why-does-linkentity-addlink-initialize-the-linkfromentityname-with-its-own-lin)
    /// Adds the new LinkEntity as a child to this LinkEnity, rather than this LinkEntity's LinkFrom Entity
    /// </summary>
    /// <param name="link"></param>
    /// <param name="linkToEntityName"></param>
    /// <param name="linkFromAttributeName"></param>
    /// <param name="linkToAttributeName"></param>
    /// <returns></returns>
    public static LinkEntity AddChildLink(this LinkEntity link, string linkToEntityName,
        string linkFromAttributeName, string linkToAttributeName, JoinOperator joinType)
    {
        var child = new LinkEntity(
            link.LinkToEntityName, linkToEntityName,
            linkFromAttributeName, linkToAttributeName, joinType);
        link.LinkEntities.Add(child);
        return child;
    }
    
    public static LinkEntity AddLink(this QueryExpression qe, string linkToEntityName, string linkAttributesName)
    {
        return qe.AddLink(linkToEntityName, linkAttributesName, linkAttributesName);
    }
    
    public static LinkEntity AddLink(this QueryExpression qe, string linkToEntityName, string linkAttributesName, JoinOperator joinType)
    {
        return qe.AddLink(linkToEntityName, linkAttributesName, linkAttributesName, joinType);
    }
    

    This shortens method and allows for chaining:

    var qe = new QueryExpression("new_entitya");
    qe.AddLink("new_entityb", "new_entitybid").
        AddChildLink("new_entityc", "new_entitybid").
        LinkCriteria.AddCondition("new_entitycid", ConditionOperator.Equal, id);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

For some reason, after submitting a string like this Jack’s Spindle from a text
I have a string like this: La Torre Eiffel paragonata all&#8217;Everest What PHP function
I'm parsing an RSS feed that has an &#8217; in it. SimpleXML turns this
I'm trying to decode HTML entries from here NYTimes.com and I cannot figure out
Does anyone know how can I replace this 2 symbol below from the string
I'm trying to create an if statement in PHP that prevents a single post
I'm new to using the Perl treebuilder module for HTML parsing and can't figure
I am trying to understand how to use SyndicationItem to display feed which is
Basically, what I'm trying to create is a page of div tags, each has
link Im having trouble converting the html entites into html characters, (&# 8217;) i

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.