I have a simple Menu entity class, and I am trying to create a custom load by a stored procedure, but the only type of load availble in my class is by a query object...
The cut and past of the code referenced by http://www.entityspaces.net/portal/Documentation/QuickReference/tabid/87/Default.aspx#Load-Stored-Procedure does not even build...
The following code is in my generated Entity Class
Public Shadows Function Load(ByVal query As MenuQuery) As Boolean
Me._query = query
Me.InitQuery(_query)
Return Me.Query.Load()
End Function
Shouldn't this be an Overloads function?
Thank you
The version I am using is the latest beta of ES2008 beta IV