Ejemplo n.º 1
0
        public int GetFieldIndex(IRowValues row, string fieldName)
        {
            if (row == null)
            {
                return(-1);
            }
            if (string.IsNullOrEmpty(fieldName))
            {
                return(-1);
            }

            if (row is RowBufferValues rowBuffer)
            {
                return(GetFieldIndex(rowBuffer.Row, fieldName));
            }

            if (row is Utils.RowValues realRow)
            {
                return(GetFieldIndex(realRow.Row, fieldName));
            }

            return(row.FindField(fieldName));
        }
Ejemplo n.º 2
0
 private static int GetFieldIndex(IRowValues row, string fieldName)
 {
     // Here we *may* want to cache field index (measure)
     return(row.FindField(fieldName));
 }