次の 2 つのクエリにパフォーマンスの違いはありますか?
CustomerProduct customerProduct = db.CustomerProducts.SingleOrDefault(p => object.Equals(p.Customer, this));
CustomerProduct customerProduct = (from p in db.CustomerProducts where object.Equals(p.Customer, this) select p).SingleOrDefault();
おそらく、さらに高速な別の方法がありますか?