EntitySpaces esPlugIn for MyGeneration

esHelper.ProcVerbFirst Property

Set this to true to change from the default EntityVerb order for the Procedure name to VerbEntity order.

[Visual Basic]
Public Property ProcVerbFirst As Boolean
[C#]
public bool ProcVerbFirst {get; set;}

Remarks

The default for ProcVerbFirst is false. It is not recommend that you set this to true. The default names allow all Employees Stored Procedures to be grouped together in an alphabetical list.

Example

The default Insert Stored Procedure name for the table "Employees" would be:

proc_EmployeesInsert
With ProcVerbFirst set to true:
esPlugIn.ProcVerbFirst = true;
You get:
proc_InsertEmployees

See Also

esHelper Class | EntitySpaces.PlugIn Namespace