Bài giảng Công nghệ lập trình tiên tiến: Chương 2 - ĐH Công nghệ Đồng Nai

Bài giảng Công nghệ lập trình tiên tiến: Chương 2 trình bày các nội dung kiến thức về truy xuất dữ liệu với LINQ như các thao tác trên máy tính, câu lệnh, cú pháp,. Tham khảo nội dung bài giảng để hiểu rõ hơn về các nội dung trên. | LINQ Language Integrated Query 1 Basic concepts LINQ requirements Concepts Types LINQ to objects LINQ to SQL LINQ to Entity LINQ to XML LINQ to Dataset 1. Basic concepts & Types LinQ 2 2. New features in language: Generics Implicitly Typed Variables Object Initializers Anonymous Types Extension Methods Lambda Expressions . Generics The creation of various types of collection Type safety Binary Code Reuse using ; List intS = new List(); (113); (114); int nAt = intS[0]; . Implicitly Typed Variables Implicitly Typed Variables – Declare variables without specifying their type – Strongly type, not variant, not object – Visual Studio will determine type • Predict what the compiler will choose • Intelligence support – Type inference -> most general • “3/10/2010” -> string, not date Example . Implicitly Typed Variables private void button2_Click(object sender, EventArgs e) { var x = 113; var y = "1/1/2012"; var z = ; var k = new | LINQ Language Integrated Query 1 Basic concepts LINQ requirements Concepts Types LINQ to objects LINQ to SQL LINQ to Entity LINQ to XML LINQ to Dataset 1. Basic concepts & Types LinQ 2 2. New features in language: Generics Implicitly Typed Variables Object Initializers Anonymous Types Extension Methods Lambda Expressions . Generics The creation of various types of collection Type safety Binary Code Reuse using ; List intS = new List(); (113); (114); int nAt = intS[0]; . Implicitly Typed Variables Implicitly Typed Variables – Declare variables without specifying their type – Strongly type, not variant, not object – Visual Studio will determine type • Predict what the compiler will choose • Intelligence support – Type inference -> most general • “3/10/2010” -> string, not date Example . Implicitly Typed Variables private void button2_Click(object sender, EventArgs e) { var x = 113; var y = "1/1/2012"; var z = ; var k = new DateTime(2012, 1, 1); string msg = "x type="+() + "\n"+ "y type = "+() + "\n" + "z type ="+() + "\n" + "k type = " + (); (msg); } . Implicitly Typed Variables Note – Always declare the type if we know – Implicitly Typed Variables are suited for LINQ and anonymous type . Object Initializers Constructor Allow to assign values to object properties (fields) when create object We do not have to explicitly invoke a constructor Useful in any context – Especially useful in LINQ expressions . Object Initializers Example class Test { public int a, b; public int a2 { set;get;} public int b2 { get; set; } } private void button3_Click(object sender, EventArgs e) { var x = new Test() {a=113,b=114,a2=115,b2=116}; (""); } . Anonymous Types Implicitly type functionality for objects – Set property values to object without writing class definition – The resulting class has no usable name – Class name is generated by .

Không thể tạo bản xem trước, hãy bấm tải xuống
TÀI LIỆU MỚI ĐĂNG
Đã 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.