Entity SQL

ช่วยอธิบายโค้ดนี้หน่อยค่ะ


LINQ to Entities: L2E query syntax is easier to learn than Entity SQL. You can use your LINQ skills for querying with EDM. Following code snippet shows how you can query with EDM created in previous step.

//Querying with LINQ to Entities
    using (SchoolDBEntities ctx = new SchoolDBEntities())
    {
        var schoolCourse = from cs in ctx.Courses
                         where cs.CourseName == "Course1"
                         select cs;
        Course mathCourse = schoolCourse.FirstOrDefault<Course>ร้องไห้);
        IList<Course> courseList = schoolCourse.ToList<Course>ร้องไห้);

        string courseName = mathCourse.CourseName;
    }

จนปัญญาจริงๆ ค่ะ ขอบคุณค่ะ
แสดงความคิดเห็น
โปรดศึกษาและยอมรับนโยบายข้อมูลส่วนบุคคลก่อนเริ่มใช้งาน อ่านเพิ่มเติมได้ที่นี่