EF Learning Note 07----------load the data greedy load of the associated table

Source: Internet
Author: User

Before we explain, let's take a look at our database structure: Class table Student table

Greedy load
//Greedy Loadusing(vardb =Newentities ()) {    varClasses = db. Classes.where (v = v.classname = ="electromechanical 10502"). Include (v =v.student); foreach(varClsinchclasses) {Console.WriteLine ("============"+CLS.        ClassName); foreach(varStuinchCLS. Student) {Console.WriteLine (stu.        Studentname); }    }}//only one SQL statement is sent to the database using the Include method

Trace SQL statements

Description: Based on the condition query, executed a SQL, one-time loading class and all students of the class

The result of the SQL statement execution is as follows:

Traverse all classes and students:

 using  (var  db = new   entities ()) { var  classes = db .    Classes.include (v => v.student);  foreach  (var  cls in   classes) {Console.WriteLine ( " ============   + Cls.        ClassName);  foreach  (var  stu in   CLS. Student) {Console.WriteLine (stu.        Studentname); }    }}

Also executes only one SQL statement, the result is as follows:

EF Learning Note 07----------load the data greedy load of the associated table

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.