所以我希望能够做到这一点。
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
然后throw
。
关于如何实现这样的事情的任何想法?
答案 0 :(得分:8)
你需要重写你的陈述,如下:
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;
}
}