this.lbBatch.DataSource=ds.Tables[1].DefaultView;
this.lbBatch.DisplayMember="ProductBatch";
this.lbBatch.ValueMember="ItemID";
itemID=this.lbBatch.SelectedValue.ToString();   
string[] str={this.productID,this.itemID};
   DataRow dr=ds.Tables[1].Rows.Find(str);我的table[1]中存放的是一个 select * from table1  这个 table1的主键是 productid 和  itemid  
但是我在执行ds.Tables[1].Rows.Find(str); 提示找不到主键 什么原因?