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});
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top