8 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");
Microsoft.AspNetCore.Identity.EntityFrameworkCore.Test (2)
CustomPocoTest.cs (2)
84
var fetch = db.Users.
First
(u => u.UserName == "Boo");
105
var fetch = users.
First
(u => u.UserName == "Boo");
System.Linq.Queryable (1)
System\Linq\Queryable.cs (1)
1779
new Func<IQueryable<TSource>, Expression<Func<TSource, bool>>, TSource>(
First
).Method,