having issue with code generation
Posted: Wed 06 May 2009 18:41
I'm using the latest version of Entity Developer 2.00.18
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 %
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();
}