Hello,
We are developing a WPF application, where LLBLGen is a important tool for decreasing the workload.
In our application it is necessary that when data get changed under the hood, the binded UI components (WPF) get notified and change along. We already have built in INotifyPropertyChanged (by using aspects and PostSharp) for all our properties in the Model layer.
In the datamapping (we use FluentNHibernate because of its many benefits), we have **replaced the default Access.CamelCaseField with Access.Property settings **(the only exception is the ID field, which only has a getter, so there CamelCaseField stays the case), so that when data changes on databaselevel, the corresponding Property in the Model is set via the mapping (and thus notified because of the INotifyPropertyChanged interface) instead of the private field member.
In LLBLGen however, this is not possible other then doing this in the template.
Is there a **reason why **this is not supported by settings in LLBLGen?
Anyone **some ideas/comments **why not to use Access.Property (Property) instead of Access.CamelCaseField (private member)?
Regards,
Marthijn