We need to create a record in Table_EntityTypes in the database. The new entry serves two purposes:

  1. Defined the extended columns for new object type Project in the databases.

  2. Provide class path for the new object type in the database for automatic object construction

This process adds an entry for the Project type. Run the following script:

CopySQL
INSERT INTO Table_EntityTypes
(EntityType, ClassPath)
VALUES        ('Project', 'Cartella.Classes.Project')