どういうわけかそれを単純化することが可能であれば、私は本当に好きではないコードの一部を持っています - 本当にいいでしょう.
A a; // I want to get rid of this variable
if((a = collection.FirstOrDefault(x => x.Field == null)) != null)
{
throw new ScriptException("{0}", a.y); //I need to access other field of the object here, that's why I had to declare a variable outside of the expression
}