/// <summary> /// Converts the value of the specified SqlBoolean to its equivalent String representation. /// </summary> /// <param name="value">An SqlBoolean.</param> /// <returns>The String equivalent of the SqlBoolean.</returns> public static String ToString(SqlBoolean value) { return value.ToString(); }
// Sql Types // /// <summary>Converts the value from <c>SqlBoolean</c> to an equivalent <c>String</c> value.</summary> public static String ToString(SqlBoolean p) { return p.ToString(); }