Coder Social home page Coder Social logo

Comments (2)

ababik avatar ababik commented on September 27, 2024 3

@michael-wolfenden thank you for your inquiry. Your feedback is appreciated.

Now you can configure Remute to work with type with multiple constructors. You can do that providing ActivationConfiguration object to Remute constructor.

Here is an example.

    public class User
    {
        public int Id { get; }
        public string FirstName { get; }
        public string LastName { get; }

        public User(int id, string firstName, string lastName)
        {
            Id = id;
            FirstName = firstName;
            LastName = lastName;
        }

        public User(string firstNameNotMatchingPropertyName, string lastName)
        {
            FirstName = firstNameNotMatchingPropertyName;
            LastName = lastName;
        }
    }
var user = new User(1, "Joe", "Doe");
var constructor = user.GetType().GetConstructor(new[] { typeof(int), typeof(string), typeof(string) });

var config = new ActivationConfiguration().Configure(constructor);
var remute = new Remute(config);

Also using ActivationConfiguration you can solve the problem when constructor parameter and property names are not matching.

var user = new User(1, "Joe", "Doe");
var type = user.GetType();
var constructor = type.GetConstructor(new[] { typeof(string), typeof(string) });

var firstNameParameter = constructor.GetParameters().Single(x => x.Name == "firstNameNotMatchingPropertyName");
var firstNameProperty = type.GetProperty("FirstName");

var config = new ActivationConfiguration()
    .Configure(constructor, new Dictionary<ParameterInfo, PropertyInfo>() { [firstNameParameter] = firstNameProperty });

var remute = new Remute(config);

So Configure method is to specify which constructor to use and how to map object properties to constructor parameters.

Last but not least, you can avoid reflection using the overloaded method. I think that would be the most preferable method because it's refactoring friendlier.

var config = new ActivationConfiguration()
    .Configure<User>(x => new User(x.FirstName, x.LastName))
    .Configure<Foo>(x => ...)
    .Configure<Bar>(x => ...);

var remute = new Remute(config);

This expression is not actually executed. This is to point which constructor to use and how to map parameters.

Please let me know if you have any questions.

from remute.

kofifus avatar kofifus commented on September 27, 2024

Remute can also search for a matching constructors from all those available ?

from remute.

Related Issues (17)

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.