Coder Social home page Coder Social logo

Comments (6)

mcatanzariti avatar mcatanzariti commented on June 16, 2024

Hi TMaddox,

Could you please provide detailed examples of the different ways you would like to serialize the same object?

Newtonsoft json contracts have many options and I'm not sure which one you would like to see implemented

from dahomey.cbor.

TMaddox avatar TMaddox commented on June 16, 2024

Sorry for the unclear OP, I'll try to find a small and accurate example

Basically I want to choose at runtime, wether a property or field should be serialized or not.

Consider the following classes:

public class Tree
    {
        public string Name { get; set; }
        public int Age { get; set; }

        public Tree() { }
        ....
    }

public class MyContract : CborBaseContract
    {
        private bool someOtherCondition; // Instanciated in ctor

        protected override IList<CborProperty> CreateProperties(Type type)
        {
            IList<CborProperty> properties = base.CreateProperties(type);

            if (typeof(Tree) == type && someOtherCondition)
            {
                properties.Where(p => p.PropertyName == "Name").ToList();
            }

            return properties;
        }
    }

Now I want to do this:

public void MyMethod()
    {
        CborContract myCustomCborContract = new MyContract();
        Cbor.Contract = myCustomCborContract;
        var serialized = Cbor.Serialize(new Tree("myTree", 10))      // I know this won't work, just a concept to keep it simple
        // serialized should contain the property "Name", but not "Age"
    }

from dahomey.cbor.

mcatanzariti avatar mcatanzariti commented on June 16, 2024

implemented in https://github.com/dahomey-technologies/Dahomey.Cbor/releases/tag/1.1.0

from dahomey.cbor.

mcatanzariti avatar mcatanzariti commented on June 16, 2024

Syntax for your example:

public class Tree
{
    public string Name { get; set; }
    public int Age { get; set; }

    public Tree() { }
    ....
}

public void MyMethod()
{
    CborOptions options = new CborOptions();
    options.Registry.ObjectMappingRegistry.Register<Tree>(objectMapping =>
        objectMapping
            .AutoMap()
            .ClearMemberMappings()
            .MapMember(o => o.Name)
    );

    var serialized = Cbor.Serialize(new Tree("myTree", 10), options);
}

from dahomey.cbor.

TMaddox avatar TMaddox commented on June 16, 2024

Thank you very much for implementing all my featue requests! I really appriciate it!

from dahomey.cbor.

mcatanzariti avatar mcatanzariti commented on June 16, 2024

You're welcome!
Please let me know if all is working as expected.

from dahomey.cbor.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.