Which is the better way to carry out this search:
context.Parameters.FirstOrDefault(x => x.ParameterName == "SomeValue").ParameterValue
or
context.Parameters.Where(x => x.ParameterName == "SomeValue").FirstOrDefault().ParameterValue
Does it matter at all?