TAILIEUCHUNG - Essential C# 3.0 FOR NET FRAMEWORK 3.5 PHẦN 8

. Nói chung, bạn có thể sử dụng lambdas tuyên bố thay thế cho nhau với lambdas biểu. Tuy nhiên, bạn không thể chuyển đổi các lambdas tuyên bố thành cây biểu. Bạn có thể thể hiện cây biểu hiện bằng cách sử dụng cú pháp lambda biểu hiện. | 564 Chapter 15 Query Expressions Three things in the output are remarkable. First notice that after selection is assigned DelegateInvocations remains at zero. At the time of assignment to selection no iteration over Keywords is performed. If Keywords were a property the property call would run in other words the from clause executes at the time of assignment. However neither the projection the filtering nor anything after the from clause will execute until the code iterates over the values within selection. It is as though at the time of assignment selection would more appropriately be called query. However once we call Count a term such as selection or items that indicates a container or collection is appropriate because we begin to count the items within the collection. In other words the variable selection serves a dual purpose of saving the query information and acting like a container from which the data is retrieved. A second important characteristic to notice is that calling Count twice causes func to again be invoked once on each item selected. Since selection behaves both as a query and as a collection requesting the count requires that the query be executed again by iterating over the IEnumerable string collection selection refers to and counting the items returning the most up-to-date results. Similarly a foreach loop over selection would trigger func to be called again for each item. The same is true of all the other extension methods provided via . Filtering In Listing we include a where clause that filters out pure keywords but not contextual keywords. The where clause filters the collection vertically so that there are fewer items within the collection. The filter criteria are expressed with a predicate a lambda expression that returns a bool such as as in Listing or file -1 as in Listing the output of which appears in Output . Listing Anonymous

TỪ KHÓA LIÊN QUAN
TAILIEUCHUNG - Chia sẻ tài liệu không giới hạn
Địa chỉ : 444 Hoang Hoa Tham, Hanoi, Viet Nam
Website : tailieuchung.com
Email : tailieuchung20@gmail.com
Tailieuchung.com là thư viện tài liệu trực tuyến, nơi chia sẽ trao đổi hàng triệu tài liệu như luận văn đồ án, sách, giáo trình, đề thi.
Chúng tôi không chịu trách nhiệm liên quan đến các vấn đề bản quyền nội dung tài liệu được thành viên tự nguyện đăng tải lên, nếu phát hiện thấy tài liệu xấu hoặc tài liệu có bản quyền xin hãy email cho chúng tôi.
Đã phát hiện trình chặn quảng cáo AdBlock
Trang web này phụ thuộc vào doanh thu từ số lần hiển thị quảng cáo để tồn tại. Vui lòng tắt trình chặn quảng cáo của bạn hoặc tạm dừng tính năng chặn quảng cáo cho trang web này.