L
localhost
I have a remote DataTable and I want to add 5 DataRows to it. My
current code does a "remoteTable.Rows.Add( new object[] { .... } );".
That results in 5 remote calls, which is bad.
I already know the schema of the remote DataTable. Is it possible to
create a DataRow collection, populate all 5 rows, and then send than
entire collection to the DataTable?
Thanks.
current code does a "remoteTable.Rows.Add( new object[] { .... } );".
That results in 5 remote calls, which is bad.
I already know the schema of the remote DataTable. Is it possible to
create a DataRow collection, populate all 5 rows, and then send than
entire collection to the DataTable?
Thanks.