所以这就是我想要做的。

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

关于如何实现这样的东西有什么想法吗?

最佳答案

您将需要重写语句,如下所示:

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

关于c# - 使用方法声明将Linq查询包装在try/catch块中,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/13279215/

10-12 12:45