System.Data.DataTable.FindByPrimaryKey C# (CSharp) 메소드

FindByPrimaryKey() 개인적인 메소드

private FindByPrimaryKey ( object values ) : DataRow
values object
리턴 DataRow
        internal DataRow FindByPrimaryKey(object[] values)
        {
            CheckPrimaryKey();
            return FindRow(_primaryKey.Key, values);
        }

Usage Example

예제 #1
0
 /// <summary>
 /// Gets the row specified by the primary key value.
 /// </summary>
 public DataRow Find(object key) => _table.FindByPrimaryKey(key);
All Usage Examples Of System.Data.DataTable::FindByPrimaryKey
DataTable