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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T19:59:58+00:00 2026-06-17T19:59:58+00:00

MVVM involves a lot of writing boilerplate code, as mentioned in multiple posts. A

  • 0

MVVM involves a lot of writing boilerplate code, as mentioned in multiple posts. A lot of shortcuts seem to provide runtime evaluation, but I was wondering is there a free utility which uses reflection to generate the c# code ie:

Class A
{
   int I {get;set;}
   ICollection C {get; set;}
}

will give me a file or clipboard containing something like

Class ViewModelA : INotifyPropertyChanged
{
   readonly A _a;
   private ObservableCollection _c;
   ViewModelA(ClassA a)
   {
      _a=a;
      _c=new ObservableCollection(a.C);
   }
   int I
   {
      get {return _a.I;}
      set
      {
         (if _a.I != value)
         {
           _a.I = value;
           NotifyPropertyChanged("I");
         }
      }
   }
}

Thanks

  • 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-17T20:00:00+00:00Added an answer on June 17, 2026 at 8:00 pm

    PropertyChanged.Fody is what I use to deal with this.

    It already recognizes base classes from most of the MVVM frameworks out there and calls the appropriate method for doing notification. Otherwise it’ll find any class that implements INPC and convert it for you.

    The reason why I prefer Fody over PostSharp is that Fody adds the IL into your assembly, and then cleans itself up, so you have no dependency on Fody or any other assemblies, and your code is self contained. PostSharp just adds interceptors, which then call out to the PostSharp library, then back into any interceptor you’ve added. This is slower at runtime, and you need a dependency on the PostSharp library.

    Plus Fody is free and open source.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

When working with MVVM and Prism i find myself doing a lot of casting,
In a MVVM based application, what options do I have to provide ViewModel data
In MVVM where the ViewModels update the Views via INotifyPropertyChanged events, there doesn't seem
I am a beginner to use MVVM in WPF and found that it seem
Does MVVM Light work with Visual C# Express? Can't seem to get any of
I can implement Mvvm with Knockout.js. But I want to use it with cross
I am using MVVM light in conjunction with EF4 and SQL CE 4, but
I am using Entity Framework and Code First approach in a WPF MVVM application
In MVVM pattern I don't want to think about the view while creating the
In MVVM development I am constantly converting List<T> from my models to ObservableCollection<T> for

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.