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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 8, 20262026-06-08T15:12:50+00:00 2026-06-08T15:12:50+00:00

I am trying accomplish creating a c# statement dynamically to avoid the use of

  • 0

I am trying accomplish creating a c# statement dynamically to avoid the use of the switch statement shown below. I looked into CodeSnippetStatement class but could not make it work.

dynamic apps;

        switch (entity)
        {
            case "entity_1":
                apps = Xrm.Entity_1Set.SingleOrDefault(a => a.Id.Equals(guid));
                break;
            case "entity_2":
                apps = Xrm.Entity_2Set.SingleOrDefault(a => a.Id.Equals(guid));
                break;
            case "entity_3":
                apps = Xrm.Entity_3Set.SingleOrDefault(a => a.Id.Equals(guid));
                break;

…

I would like to do something like this (pass entity dynamically into string and convert the statement to execute in run time):

apps = CodeSnippetStatement(String.Format(“Xrm.{0}Set.SingleOrDefault(a => a.Id.Equals(guid)”, entity) );

Is that possible??

  • 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-08T15:12:55+00:00Added an answer on June 8, 2026 at 3:12 pm

    Assuming Entity_1Set is a public property of Xrm, you could use reflection:

    using System.Reflection; // at the top of your code file
    
    var propertyName = "E" + entity.Substring(1) + "Set";
    apps = Xrm.GetType().GetProperty(propertyName ).GetValue(Xrm);
    

    This will only work if Xrm is an instance of a class (not a static class reference).

    Note that reflection is slower than direct access of a property. This time cost is not much if you are only doing this occasionally. But inside a loop, it could add up.

    Another technique would be to cache your EntitySet instances into a dictionary:

    private Dictionary<string, EntitySet> entityMappings; // at the top of your class
    
    var xrm = GetXrmFromSomewhere();
    entityMappings = new Dictionary<string, EntitySet>
    {
        { "entity_1", xrm.Entity_1Set },
        { "entity_2", xrm.Entity_2Set },
        { "entity_3", xrm.Entity_3Set }
    };
    

    Then you would just need to do:

    var app = entityMappings[entity].SingleOrDefault(a => a.Id.Equals(guid));
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am trying to accomplish the following logical operation in Python but getting into
I'm trying to accomplish a simple task of creating a database with 2 tables
Im trying to accomplish something which may seem a bit convoluted but would be
I'm trying to accomplish something very, very similar to the below picture with CSS3
I'm trying to accomplish this but I've got no clue about getting a GWT
I'm trying to accomplish one simple task (but is not simple for me). I
What I'm trying to accomplish is creating a gradient using only css... What I'm
Recently, I have been trying to accomplish creating a full-width jQuery slider that would
What I am trying to accomplish is very simple: creating a loop from a
I am trying to accomplish something like this: I am creating a simple blog.

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.