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

HasRecord() 개인적인 메소드

private HasRecord ( ) : bool
리턴 bool
        internal bool HasRecord() => Row.HasVersion(RowVersionDefault);

Usage Example

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

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