Giter Site home page Giter Site logo

Comments (3)

Dragnalith avatar Dragnalith commented on May 28, 2024 1

I have tested again, and you're right it works. I am not sure what I did wrong before

from mvvmgen.

thomasclaudiushuber avatar thomasclaudiushuber commented on May 28, 2024

Hi @Dragnalith ,

it is possible to have several constructors. You can just call the InitializeCommands method, as it is a method of the ViewModel class.

This here is a fully valid ViewModel:

[ViewModel]
public partial class MainViewModel
{
  public MainViewModel(string customerParameter)
  {
    this.InitializeCommands();
  }

  public MainViewModel(string customerParameter, int customParameter2)
  {
    this.InitializeCommands();
  }

  [Command]
  public void Save() { }
}

You can also call the generated constructor

  [ViewModel]
  public partial class MainViewModel
  {
    public MainViewModel(string customerParameter) : this()
    {
     
    }

    [Command]
    public void Save() { }
  }

There's no need to mark InitializeCommands nor the generated constructor as partial, because these members are already in your ViewModel class. The ViewModel class is just split across two files, the one you create, and the one generated.

Please provide a code example where you have problems, then I can take a look at it. But all the issues you described actually work with MvvmGen.

Hope this helps,
Thomas

from mvvmgen.

thomasclaudiushuber avatar thomasclaudiushuber commented on May 28, 2024

No problem @Dragnalith, that's what I'm here for, to help if something does not work as expected.

Glad that it works now for you.

Thank you for the feedback,
Thomas

from mvvmgen.

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.