How to find in DataView if the primarykey more than one

  • Thread starter Thread starter ad
  • Start date Start date
A

ad

We can use DataView.Find("PrimaryKey") to find a primaykey value a
DataView.
but How can we find if the Prmarykey is compound with more than one keys?
 
Pass an array of objects in the same order as primary key is defined, for
example:
DataView.Find(new object[]{"First", 2});
 
Back
Top