使用方法声明在try / catch块中包装Linq查询

时间:2012-11-07 22:16:39

标签: c# .net linq extension-methods

所以我希望能够做到这一点。

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

关于如何实现这样的事情的任何想法?

1 个答案:

答案 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;
    }
}