Tests.QueryableTests.CreateEntitiesList C# (CSharp) Method

CreateEntitiesList() private static method

private static CreateEntitiesList ( ) : IQueryable
return IQueryable
        private static IQueryable<Entity> CreateEntitiesList()
        {
            return new List<Entity>
            {
                new Entity { Id = 1, Name = "Tom", Email = "[email protected]", Birthdate = DateTime.Now, Created = DateTime.Now, Age = 33, Price = 88.99F, Distance = 34.5, Flag = 3, Active = false, Group = 1 },
                new Entity { Id = 2, Name = "Tom", Email = "[email protected]", Birthdate = DateTime.Now, Created = DateTime.Now, Age = 66, Price = 88.99F, Distance = 34.5, Flag = 12, Active = true},
                new Entity { Id = 3, Name = "Tom", Email = "[email protected]", Birthdate = DateTime.Now, Created = DateTime.Now, Age = 66, Price = 88.99F, Distance = 34.5, Flag = 12, Active = true },
                new Entity { Id = 4, Name = "Dick", Email = "[email protected]", Birthdate = DateTime.Now, Created = DateTime.Now, Age = 44, Price = 88.99F, Distance = 34.5, Flag = 6, Active = true },
                new Entity { Id = 5, Name = "Dick", Email = "[email protected]", Birthdate = DateTime.Now, Created = DateTime.Now, Age = 77, Price = 88.99F, Distance = 34.5, Flag = 15, Active = true },
                new Entity { Id = 6, Name = "Dick", Email = "[email protected]", Birthdate = DateTime.Now, Created = DateTime.Now, Age = 77, Price = 88.99F, Distance = 34.5, Flag = 15, Active = true },
                new Entity { Id = 7, Name = "Dick", Email = "[email protected]", Birthdate = DateTime.Now, Created = DateTime.Now, Age = 44, Price = 88.99F, Distance = 34.5, Flag = 6, Active = true},
                new Entity { Id = 8, Name = "Harry", Email = "[email protected]", Birthdate = DateTime.Now, Created = DateTime.Now, Age = 65, Price = 88.99F, Distance = 34.5, Flag = 9, Active = true, Group = 1 },
                new Entity { Id = 9, Name = "Harry", Email = "[email protected]", Birthdate = DateTime.Now, Created = DateTime.Now, Age = 55, Price = 88.99F, Distance = 34.5, Flag = 8, Active = false }
            }.AsQueryable();
        }