Hi-
I have created a class that extends %Persistent and %Populate and have set the various POPSPEC attributes of my properties to control how the properties are populated. However, when I compile the class and try to run the Populate() method it tells me the method isnt defined.
Here is the class definition:
Class My.PrimaryClass Extends (%Populate, %Persistent)
{
Property Name As %String(POPSPEC = "NAME");
Property Title As %String(POPSPEC = "TITLE");
Property City As %String(POPSPEC = "CITY");
Property State As %String(POPSPEC = "STATE");
Property Zip As %String(POPSPEC = "ZIP");
Property Employment As VA.SecondaryClass;
}

