引发与Linq的异常

本文关键字:异常 Linq | 更新日期: 2023-09-27 18:25:43

我正在加入内存集合中的2

var items = 
    from el in elements 
    join def in Cached.Elements() 
        on el.Value equals def.Name into temp1
    from res in temp1.DefaultIfEmpty()                        
    select new
    {
        el.NodeType, 
        res.DefKey, 
        res.DefType, 
        res.BaseKey, 
        el.Value 
    };

然而,理想情况下,如果找不到其中一个元素,我想提出一个例外,类似于

throw new System.Exception(el.Value + " cannot be found in cache!");

我在看System.Interactive,它提供了Catch扩展方法,但我不确定如何在该上下文中引用当前的"el"。例如,我想知道像这样的东西

    var items = (
        from el in elements 
        join def in Cached.Elements() 
            on el.Value equals def.Name into temp1
        from res in temp1.DefaultIfEmpty()                        
        select new 
        { 
            el.NodeType, 
            res.DefKey, 
            res.DefType, 
            res.BaseKey, 
            el.Value 
        })
        .ThrowIfEmpty();

但是,istm,这将需要将整个集合传递到扩展方法中,而不是在遇到丢失的值时引发异常。

或者,我可以将DefaultIfEmpty替换为ThrowIfEmpty

    var items = (
        from el in elements 
        join def in Cached.Elements() 
            on el.Value equals def.Name into temp1
        from res in temp1.ThrowIfEmpty()                        
        select new 
        { 
            el.NodeType, 
            res.DefKey, 
            res.DefType, 
            res.BaseKey, 
            el.Value 
        });

有没有一种"合适的"/更好的方法来做这件事?

引发与Linq的异常

您可以使用GroupJoin。像这样的东西应该对你有用:

elements.GroupJoin(Cached.Elements(), e => e.Value, d => d.Name, (e, dSeq) => {
    var d = dSeq.Single();
    return new { e, d };
});

GroupJoin resultSelector接受两个参数:左键和匹配的右键序列。如果序列为空,则可以引发异常;实现这一点的一种方法是使用Single运算符。

我认为这是可以使用组合键的地方之一。

如果使用equals关键字在联接时执行相等。

来自文档:

将复合密钥创建为匿名类型或使用要比较的值。如果查询变量跨方法边界传递,使用重写的命名类型密钥的Equals和GetHashCode