At least with postgres, it (the code generation) is outputting an extra %
after the closing brace of SendProperyChanged method. I've tried not doing serialization, but it (code generation) still outputs the stray %
Code: Select all
protected virtual void SendPropertyChanged(String propertyName)
{
if (this.PropertyChanged != null) this.PropertyChanged(this, new PropertyChangedEventArgs(propertyName)); }%
private void Initialize()
{
OnCreated();
}