6 references to First
CatalogDb (5)
CatalogDbInitializer.cs (5)
61var dotNet = catalogBrands.First(b => b.Brand == ".NET"); 62var other = catalogBrands.First(b => b.Brand == "Other"); 64var mug = catalogTypes.First(c => c.Type == "Mug"); 65var tshirt = catalogTypes.First(c => c.Type == "T-Shirt"); 66var sheet = catalogTypes.First(c => c.Type == "Sheet");
System.Linq.Queryable (1)
System\Linq\Queryable.cs (1)
1978new Func<IQueryable<TSource>, Expression<Func<TSource, bool>>, TSource>(First).Method,