Hello!
In another project in my FT gig, we are using WPF and when the EntityClasses are defined, we use this type of property definition... the view objects are being bound to the enitities via the viewmodel. And we want to raise a PropertyChange event when setting a property to update bindings...
public string CustomerName
{
get
{
return this.customerNameValue;
}
set
{
if (value != this.customerNameValue)
{
this.customerNameValue = value;
NotifyPropertyChanged("CustomerName");
}
}
}
Is LLBLGen able to produce these kind of classes that would be used in WPF bindings? Is this it's job?
Thanks
Harold