Exemplo n.º 1
0
        public void LinqContains()
        {
            QueryTests.Insert(new House {
                Description = "this is a nice house"
            });
            QueryTests.Insert(new House {
                Description = "not it is not"
            });

            Console.WriteLine("houses with nice in description:");
            QueryTests.AsQueryable <House>()
            .Where(h => h.Description.Contains("nice"))
            .ToList()
            .ForEach(h => Console.WriteLine(h.Description));
        }