How do i update a field or fields in an EntityCollection.
Something Like this
Update Transaction
set Pay=5,
Bill=10
second, is there a easy way to copy EntityCollection, say if i want to copy everything except PK.
Something like this
Select pay, bill, ....into TempTransaction From Transaction?
for both of these i am using something like this...
foreach(TransactionEntity t in TransactionEntityCollection)
{
update fields...
or copy values to new entity collection
}
I am using WinForms, Adapter, (LLBL V2 Oct 23),.NET2.0, SQL 2005
Thanks