ObjectStatementCollection.Populate Method

Definition

Populates the statement table with a statement owner or a collection of statement owners.

Overloads

Populate(ICollection)

Populates the statement table with a collection of statement owners.

Populate(Object)

Populates the statement table with a statement owner.

Populate(ICollection)

Populates the statement table with a collection of statement owners.

public:
 void Populate(System::Collections::ICollection ^ statementOwners);
public void Populate (System.Collections.ICollection statementOwners);
member this.Populate : System.Collections.ICollection -> unit
Public Sub Populate (statementOwners As ICollection)

Parameters

statementOwners
ICollection

A collection of statement owners to add to the table.

Exceptions

statementOwner is null.

Remarks

If you are the creator of the statement context, you should call the Populate method if you want statement tables to be used to store values for certain objects.

See also

Applies to

Populate(Object)

Populates the statement table with a statement owner.

public:
 void Populate(System::Object ^ owner);
public void Populate (object owner);
member this.Populate : obj -> unit
Public Sub Populate (owner As Object)

Parameters

owner
Object

The statement owner to add to the table.

Exceptions

owner is null.

Remarks

If you are the creator of the statement context, you should call the Populate method if you want statement tables to be used to store values for certain objects.

See also

Applies to