我有以下方法,Resharper告诉我if(drivers != null)
将永远是真的,但我不知道为什么它告诉我catch
块是多余的,但有人可以解释为什么?这是代码:
public List<Driver> GetDrivers(int id)
{
if (_context != null)
{
try
{
var drivers = _context.Drivers.Where(x=> x.id == id).ToList();
//Always true
if (drivers != null)
{
//code
}
else
{
//Heuristically unreachable
throw new Exception("No Driver");
}
}
catch (Exception ex)
{
throw;
}
}
return drivers;
}
if(drivers != null)
总是如此?驱动程序不能为空吗?如果它是正确的,我假设有一个非空的驱动程序的默认值。catch
是多余的,但除了是null之外,哪个
resharper说它不能,是不是还有另外一个例外
抛出会导致catch
执行?答案 0 :(得分:5)
你正在使用.Where,它返回一个集合。如果不匹配则为空集合,因此不为空。
我认为你想使用.SingleOrDefault而不是.Where。
答案 1 :(得分:5)
嗯,捕获确实是多余的,你没有做任何事情,只是重新抛出完全相同的例外:
catch (Exception ex)
{
// would make more sense if for example you're writing to log file
// otherwise this will be thrown anyway (even without the catch)
throw;
}
此外,这永远不会返回null,它可能有0个条目,但它不会为null:
_context.Drivers.Where(x=> x.id == id).ToList();
答案 2 :(得分:2)
try块是多余的,因为你只是再次抛出错误而没有做任何额外的处理。如果删除try/catch
,则异常会冒泡。你不需要扔它。
.Where
返回一个集合。它永远不会为空,但它可能是空的。