Adds a new item to the entity set

Namespace: BrightstarDB.EntityFramework
Assembly: BrightstarDB (in BrightstarDB.dll) Version: 1.9.0.0 (1.9.0.0)

Syntax

C#
void Add(
	T item
)
Visual Basic
Sub Add ( 
	item As T
)
Visual C++
void Add(
	T item
)
F#
abstract Add : 
        item : 'T -> unit 

Parameters

item
Type: T
The item to be added

Remarks

If the item does not yet have an identity, one will be generated for it

See Also