Full vs. Full/Safe

Posts   
 
    
Posts: 11
Joined: 29-Mar-2005
# Posted on: 06-May-2005 21:15:42   

What is the difference between Full and Full/Safe?

Otis avatar
Otis
LLBLGen Pro Team
Posts: 39928
Joined: 17-Aug-2003
# Posted on: 06-May-2005 23:06:21   

Full overwrites derived entity classes, Full/safe doesn't (only overwrites entity base classes). simple_smile

Frans Bouma | Lead developer LLBLGen Pro
chaimweb
User
Posts: 10
Joined: 12-Apr-2005
# Posted on: 31-May-2005 16:49:02   

Do you mean it will not overwrite the Entity Classes but the **Base Entity classes **WILL be overwritten !

Otis avatar
Otis
LLBLGen Pro Team
Posts: 39928
Joined: 17-Aug-2003
# Posted on: 31-May-2005 18:02:31   

chaimweb wrote:

Do you mean it will not overwrite the Entity Classes but the **Base Entity classes **WILL be overwritten !

Ooops, completely correct flushed . I've corrected my posting. Thanks!

Frans Bouma | Lead developer LLBLGen Pro
Bruce
User
Posts: 61
Joined: 18-May-2006
# Posted on: 18-May-2006 14:28:48   

Are there any differences between [Full/Safe] and [Base classes only]?

Otis avatar
Otis
LLBLGen Pro Team
Posts: 39928
Joined: 17-Aug-2003
# Posted on: 18-May-2006 18:13:27   

Full/safe generates all classes though doesn't overwrite derived entity classes if they're present. Base classes only doesn't generate the derived entity classes. So if you're starting a new project, you shouldn't use base classes only simple_smile .

However, I'd simply go for full/safe. base classes only is deprecated and is removed in v2.

Frans Bouma | Lead developer LLBLGen Pro
Bruce
User
Posts: 61
Joined: 18-May-2006
# Posted on: 19-May-2006 15:21:55   

OK - Thanks Otis.