MicroLite.Builder.SqlBuilder.Execute C# (CSharp) Method

Execute() public static method

Species the name of the procedure to be executed.
If the stored procedure has no parameters, call .ToSqlQuery() otherwise add the parameters (see the WithParameter method).
public static Execute ( string procedure ) : IWithParameter
procedure string The name of the stored procedure.
return IWithParameter
        public static IWithParameter Execute(string procedure)
        {
            return new StoredProcedureSqlBuilder(SqlCharacters.Current, procedure);
        }