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

前端之家收集整理的这篇文章主要介绍了c# – 使用方法声明在try / catch块中包装Linq查询前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
所以这就是我希望能够做到的.
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;
    }
}
原文链接:https://www.f2er.com/csharp/91500.html

猜你在找的C#相关文章