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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T06:35:27+00:00 2026-06-13T06:35:27+00:00

I have an intermediary object between my Entity Framework entities and a JSON object

  • 0

I have an intermediary object between my Entity Framework entities and a JSON object that I serialize/deserialize in order to import and export to a text file.

When I am exporting from the entity framework I use the following code to iterate through the entity types properties…If the property in the entity matches the property from an enum that I have, the property gets saved to the JSON object. This stops entity specific properties from cluttering up my JSON.

var blockProperties = typeof(FixedLengthBlock).GetProperties(BindingFlags.Public | BindingFlags.Instance);
foreach (var property in blockProperties)
{

    if (Enum.GetNames(typeof(ModuleSettingEnum)).Contains(property.Name.ToLower()) && property.GetValue((FixedLengthBlock)element, null) != null)
        blockJsonEntity.Properties.Add(property.Name, property.GetValue((FixedLengthBlock)element, null).ToString());
}

While the above code works, I cannot think of a similar way to do the opposite. When reading back from JSON I have the properties/values in a dictionary. I know that I can run through the properties of the EF Entity and search the dictionary if it contains a key like this:

var blockProperties = typeof(FixedLengthBlock).GetProperties(BindingFlags.Public | BindingFlags.Instance);
foreach (var property in blockProperties)
{
        if (block.Properties.ContainsKey(property.Name))
   {
     ???????What goes here??????
   }
}

How do I get the matched property into the newly created entity I’ve made to receive the information. I’d really like to avoid a large switch statement.

My Json object looks like this:

public class JsonEntity
{
    public string Name { get; set; }
    public string Type { get; set; }
    public Dictionary<string, string> Properties { get; set; }
    public List<JsonEntity> SubEntities { get; set; } 

    public JsonEntity()
    {
        Properties = new Dictionary<string, string>();

    }
}
  • 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-13T06:35:28+00:00Added an answer on June 13, 2026 at 6:35 am

    Okay, so if we’re deserializing into the same type let’s try this:

    var bindingFlags = BindingFlags.Public | BindingFlags.Instance;
    var blockProperties = typeof(FixedLengthBlock).GetProperties(bindingFlags);
    var newObj = Activator.CreateInstance(typeof(FixedLengthBlock))
    foreach (var property in blockProperties)
    {
        if (block.Properties.ContainsKey(property.Name))
        {
            var propertyInfo = newObj.GetType().GetProperty(property.Name, bindingFlags);
            if (propertyInfo == null) { continue; }
            propertyInfo.SetValue(newObj, block.Properties[property.Name]);
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have an intermediary class extending System.Web.UI.Page for all of my pages that require
I want to add a relationship between multiple existing entities and another existing entity.
Previously i wrote an app that used reflection to serialize data from json to
I have a custom ValidationRule that requires access to the ViewModel in order to
I have an XSLT in which I create (from the input data) intermediary variables
I am using autoconf. Right now I have an intermediate .cpp file that is
have written this little class, which generates a UUID every time an object of
I'm trying to use IronPython as an intermediary between a C# GUI and some
I have to work with some code that isn't truly MVC (i.e., it doesn't
I'm currently working with an online application that requires multiple screens/steps in order to

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.