Func.Execute C# (CSharp) Method

Execute() private method

private Execute ( long requestID, string stepName, string stepLocation ) : void
requestID long
stepName string
stepLocation string
return void
   public static void Execute(long requestID, string stepName, string stepLocation)
   {
      // do work here
   }
}

Usage Example

Exemplo n.º 1
0
        public virtual void StoreExecutedScript(SqlScript script, Func <IDbCommand> db)
        {
            var name = NameWithHash.FromScript(script);

            db.Execute(GetDeleteScriptSql(), new { scriptName = name.PlainName });

            db.Execute(GetInsertScriptSql(),
                       new
            {
                scriptName   = name.PlainName,
                contentsHash = name.ContentsHash
            });
        }
All Usage Examples Of Func::Execute