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?

Re: How to find in DataView if the primarykey more than one by Miha

Miha
Sat Oct 29 08:17:14 CDT 2005

Pass an array of objects in the same order as primary key is defined, for
example:
DataView.Find(new object[]{"First", 2});

--
Miha Markic [MVP C#]
RightHand .NET consulting & development www.rthand.com
Blog: http://cs.rthand.com/blogs/blog_with_righthand/

"ad" <flying@wfes.tcc.edu.tw> wrote in message
news:uo0ZlbI3FHA.268@TK2MSFTNGP10.phx.gbl...
> 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?
>