DataSource for Entity Framework in WPF
C1.Data.DataSource Namespace / ClientCollectionView Class / Add Method
The new entity to add.

In This Topic
    Add Method (ClientCollectionView)
    In This Topic
    Adds a new entity to the client-side cache and to the associated context. The entity will appear in this collection view if it matches the underlying query.
    Syntax
    'Declaration
     
    Public Sub Add( _
       ByVal entity As Object _
    ) 
    public void Add( 
       object entity
    )

    Parameters

    entity
    The new entity to add.
    See Also