System.Data.DataRowView.GetRecord C# (CSharp) 메소드

GetRecord() 개인적인 메소드

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

Usage Example

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

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