Click or drag to resize
DaoBaseAddNew Method
Adds the given fields to the database as a new entity.

Namespace:  SD.LLBLGen.Pro.ORMSupportClasses
Assembly:  SD.LLBLGen.Pro.ORMSupportClasses (in SD.LLBLGen.Pro.ORMSupportClasses.dll) Version: 5.3.0.0 (5.3.0)
Syntax
public bool AddNew(
	IEntityFields fields,
	ITransaction containingTransaction
)

Parameters

fields
Type: SD.LLBLGen.Pro.ORMSupportClassesIEntityFields
The EntityField data to use for the insert.
containingTransaction
Type: SD.LLBLGen.Pro.ORMSupportClassesITransaction
A containing transaction, if caller is added to a transaction, or null if not.

Return Value

Type: Boolean
true if the addition was succesful, false otherwise

Implements

IDaoAddNew(IEntityFields, ITransaction)
Exceptions
ExceptionCondition
ArgumentNullExceptionWhen fields is null
See Also