EntitySet<TEntity>.Add Method (TEntity)
[WCF RIA Services Version 1 Service Pack 2 is compatible with either .NET framework 4 or .NET Framework 4.5, and with either Silverlight 4 or Silverlight 5.]
Adds the specified entity to this entity set. Also, recursively adds all unattached entities that are reachable through associations.
Namespace: System.ServiceModel.DomainServices.Client
Assembly: System.ServiceModel.DomainServices.Client (in System.ServiceModel.DomainServices.Client.dll)
Syntax
'Declaration
Public Sub Add ( _
entity As TEntity _
)
'Usage
Dim instance As EntitySet
Dim entity As TEntity
instance.Add(entity)
public void Add(
TEntity entity
)
public:
void Add(
TEntity entity
)
member Add :
entity:'TEntity -> unit
public function Add(
entity : TEntity
)
Parameters
- entity
Type: TEntity
The entity to add. entity must be a TEntity type and cannot be a subclass.