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