6

所以这就是我想要做的。

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()然后Exceptionthrow它。

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

4

1 回答 1

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;
    }
}
于 2012-11-07T22:23:23.487 回答