Example #1
0
        internal void For(Expression <Action <T> > action)
        {
            var computation = new _Lambda <T, object>(action);

            this._HookAction(
                this.entity,
                () => this.describeComputation(computation.ToString()),
                () => this._For(computation)
                );
        }
Example #2
0
 internal bool Until <R>(_Lambda <T, R> lambda)
 {
     try
     {
         this._For(lambda);
         return(true);
     }
     catch (System.Exception)
     {
         return(false);
     }
 }