所以这就是我希望能够做到的.
var a = Item.CatchLog().Where(x=>x.Property=="value").Take(10);
要么
var a = Item.CatchLog().FirstOrDefault(x=>x.Property=="value");
要么
var a = Item.CatchLog().Any(x=>x.Property=="value");
本质上,我想CatchLog()基本上将查询的执行包装在try catch中,而Debug.WriteLine()则是Exception,然后抛出它.
关于如何实现这样的事情的任何想法?
解决方法
您需要重写您的语句,如下所示:
var a = Item.CatchLog(c => c.Where(x => x.Property=="value").Take(10));
如果你允许的话,你可以这样写:
public static U CatchLog<T,U>(this IEnumerable<T> collection,Func<IEnumerable<T>,U> method) { try { return method(collection); } catch(Exception e) { Debug.WriteLine(e.Message); throw; } }