예제 #1
0
 public static string ReplaceObjectBlankWithIndex(string objectName, int length) => RecSetCommon.ReplaceObjectBlankWithIndex(objectName, length);
예제 #2
0
 public static string ReplaceRecordBlankWithStar(string fullRecSetName) => RecSetCommon.ReplaceRecordBlankWithStar(fullRecSetName);
예제 #3
0
 public static string CreateRecordsetDisplayValue(string recsetName, string colName, string indexNum) => RecSetCommon.CreateRecordsetDisplayValue(recsetName, colName, indexNum);
예제 #4
0
 public static string ReplaceRecordsetBlankWithIndex(string fullRecSetName, int length) => RecSetCommon.ReplaceRecordsetBlankWithIndex(fullRecSetName, length);
예제 #5
0
 /// <summary>
 /// Gets the index type of a recorset
 /// </summary>
 /// <param name="expression">The expression.</param>
 /// <returns></returns>
 public static enRecordsetIndexType GetRecordsetIndexType(string expression) => RecSetCommon.GetRecordsetIndexType(expression);
예제 #6
0
 public static string RemoveRecordsetBracketsFromValue(string value) => RecSetCommon.RemoveRecordsetBracketsFromValue(value);
예제 #7
0
 public static string ExtractIndexRegionFromRecordset(string rs) => RecSetCommon.ExtractIndexRegionFromRecordset(rs);
예제 #8
0
 public static bool IsStarIndex(string rs) => RecSetCommon.IsStarIndex(rs);
예제 #9
0
 public static string MakeValueIntoHighLevelRecordset(string value) => RecSetCommon.MakeValueIntoHighLevelRecordset(value, false);
예제 #10
0
 public static string MakeValueIntoHighLevelRecordset(string value, bool starNotation) => RecSetCommon.MakeValueIntoHighLevelRecordset(value, starNotation);
예제 #11
0
 /// <summary>
 /// Used to extract a field name from our recordset notation
 /// </summary>
 /// <param name="value">The value</param>
 /// <returns></returns>
 public static string ExtractFieldNameOnlyFromValue(string value) => RecSetCommon.ExtractFieldNameOnlyFromValue(value);
예제 #12
0
 /// <summary>
 /// Used to extract a recordset name from a string as per the Dev2 data language spec
 /// </summary>
 /// <param name="value">The value</param>
 /// <returns></returns>
 public static string ExtractRecordsetNameFromValue(string value) => RecSetCommon.ExtractRecordsetNameFromValue(value);
예제 #13
0
 /// <summary>
 /// Determines whether is a recordset with fields
 /// </summary>
 /// <param name="value"></param>
 /// <returns></returns>
 public static bool IsValueRecordsetWithFields(string value) => RecSetCommon.IsValueRecordsetWithFields(value);
예제 #14
0
 /// <summary>
 /// Determines whether the value is a recordset.
 /// </summary>
 /// <param name="value">The value.</param>
 /// <returns>
 ///   <c>true</c> if [value is recordset] [the specified value]; otherwise, <c>false</c>.
 /// </returns>
 public static bool IsValueRecordset(string value) => RecSetCommon.IsValueRecordset(value);
예제 #15
0
 /// <summary>
 /// Replaces the index of a recordset with a blank index.
 /// </summary>
 /// <param name="expression">The expession.</param>
 /// <returns></returns>
 public static string ReplaceRecordsetIndexWithStar(string expression) => RecSetCommon.ReplaceRecordsetIndexWithStar(expression);