System.Data.DataRowView.GetRecord C# (CSharp) Method

GetRecord() private method

private GetRecord ( ) : int
return int
        internal int GetRecord() => Row.GetRecordFromVersion(RowVersionDefault);

Usage Example

Beispiel #1
0
        private object[] GetParentValues()
        {
            if (_filterValues != null)
            {
                return(_filterValues);
            }

            if (!_parentRowView.HasRecord())
            {
                return(null);
            }
            return(_parentKey.Value.GetKeyValues(_parentRowView.GetRecord()));
        }