Linq to SQLで使用した場合のFirstOrDefault()のデフォルトの動作は何ですか?
例えば
int value = (from p in context.tableX
select p.Id).FirstOrDefault() // Value will initialized here or
if(value > 0) // query will be executed here????
{
//do something
}
ありがとう