Hello I have an c# class with a method taking an expression: *Refresh(System.Linq.Expressions.Expression<Func<T, bool>> predicate)*
in c# I can call it like; *Refresh(a => a.ShopArtikel == true);* is it possible to call the method from python in a similar way? I'm thinking of *Refresh(lambda a: a.ShopArtikel == true)* * * how can I convert the lambda function to the expeced expression type? best, Severin
_______________________________________________ Users mailing list Users@lists.ironpython.com http://lists.ironpython.com/listinfo.cgi/users-ironpython.com