Hi,
Header details for the file below:
Code:
'===============================================================================
' EntitySpaces(TM) by EntitySpaces, LLC
' A New 2.0 Architecture for the .NET Framework
' http://www.entityspaces.net
'===============================================================================
' EntitySpaces Version # 2008.0.0611.0
' MyGeneration Version # 1.2.0.7
' Date Generated : 12/06/2008 19:30:22
As you can see from the attached code snippet below (generated against Northwind running on SQL Server 2005), there appears to be an issue with the call to OnPropertyChanged (i.e. no property name is passed, just an empty string) - this is the same for all properties generated I'm afraid.
Code:
' <summary>
' Maps to Customers.CompanyName
' </summary>
Public Overridable Property CompanyName As System.String
Get
Return MyBase.GetSystemString(CustomersMetadata.ColumnNames.CompanyName)
End Get
Set(ByVal value As System.String)
If MyBase.SetSystemString(CustomersMetadata.ColumnNames.CompanyName, value) Then
Me.MarkFieldAsModified(CustomersMetadata.ColumnNames.CompanyName)
Me.OnPropertyChanged("")
RaiseEvent PropertyChanged(Me, New PropertyChangedEventArgs(CustomersMetadata.PropertyNames.CompanyName))
End If
End Set
End Property
Thanks
Martin