示例#1
0
 public static ICollection <ApplicationUser> GetJinAndJonesAtHome(this ApplicationUsersServiceTests tests, int count = 30)
 => Enumerable.Range(1, count)
 .Select(x => new ApplicationUser
 {
     Email           = (x % 2 == 0 ? $"Jin{x}@home" : $"John{x}@home").ToUpper(),
     NormalizedEmail = (x % 2 == 0 ? $"Jin{x}@home" : $"John{x}@home").ToUpper(),
 })
 .ToList();
示例#2
0
 public static ICollection <ApplicationUser> GetUsers(this ApplicationUsersServiceTests tests)
 => Enumerable.Range(100, 10)
 .Select(x => new ApplicationUser
 {
     Id              = x.ToString(),
     Email           = ((char)x).ToString(),
     NormalizedEmail = ((char)x).ToString().ToUpper(),
 })
 .ToList();