basically I want to get the values of the parameters of a called method like this:
var x = 1; var a = 2; var b = 3; Do(o => o.Save(x
public override IQueryable FindAll(System.Linq.Expressions.Expression> Id) { dynamic currentType = Id.Parameters[0]; var id = currentType.Type.GUID; var result = (_uniwOfWork as UnitOfWork).uspGetImages(id.ToString()); return FindAll(); }
use keyword dynamic.