/// <summary> /// A SqlCeConnection extension method that executes the expando object operation. /// </summary> /// <param name="this">The @this to act on.</param> /// <param name="cmdText">The command text.</param> /// <param name="transaction">The transaction.</param> /// <returns>A dynamic.</returns> public static dynamic ExecuteExpandoObject(this SqlCeConnection @this, string cmdText, SqlCeTransaction transaction) { return(@this.ExecuteExpandoObject(cmdText, null, CommandType.Text, transaction)); }
/// <summary> /// A SqlCeConnection extension method that executes the expando object operation. /// </summary> /// <param name="this">The @this to act on.</param> /// <param name="cmdText">The command text.</param> /// <param name="commandType">Type of the command.</param> /// <returns>A dynamic.</returns> public static dynamic ExecuteExpandoObject(this SqlCeConnection @this, string cmdText, CommandType commandType) { return(@this.ExecuteExpandoObject(cmdText, null, commandType, null)); }
/// <summary> /// A SqlCeConnection extension method that executes the expando object operation. /// </summary> /// <param name="this">The @this to act on.</param> /// <param name="cmdText">The command text.</param> /// <param name="parameters">Options for controlling the operation.</param> /// <returns>A dynamic.</returns> public static dynamic ExecuteExpandoObject(this SqlCeConnection @this, string cmdText, SqlCeParameter[] parameters) { return(@this.ExecuteExpandoObject(cmdText, parameters, CommandType.Text, null)); }