I have a few questions related to setting default values.
I did find this reference to using the code blocks within the generated classes, http://www.llblgen.com/tinyforum/Messages.aspx?ThreadID=3194
I have a strong resistence to playing in generated classes and prefer methods like partials or using OnEvent methods.
Is it possible to set values:
* OnCreate (default field values use)
* OnSave (just before save)
On Create would set things like "Assigned Manager" or Expected Shipping Date.
OnSave would need a property to know its Insert or Update. If New/Insert then I want to set the CreateDate = Now and CreatedBy = XXXXXX. And then if its an Update, the ModifedDate = Now and ModifiedBy = XXXXXX
So other then adding my code to the generated code is there an example that shows how this can be done?