FindByPrimaryKey() private method

private FindByPrimaryKey ( object values ) : DataRow
values object
return DataRow
Example #1
0
 /// <summary>
 /// Gets the row specified by the primary key value.
 /// </summary>
 public DataRow Find(object key) => _table.FindByPrimaryKey(key);
Example #2
0
 /// <devdoc>
 ///    <para>Gets
 ///       the row specified by the primary key value.
 ///       </para>
 /// </devdoc>
 public DataRow Find(object key)
 {
     return(table.FindByPrimaryKey(key));
 }