实体框架中select和first之间的区别

实体框架中select和first之间的区别

本文介绍了实体框架中select和first之间的区别的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

请定义之间的区别



Student stud = context.Students.First(i => i.Roll_No == 1);



学生stud = context.Students.select();



我们如何使用select ????

please define the difference between

Student stud = context.Students.First(i => i.Roll_No == 1);
and
Student stud = context.Students.select();

and how can we use select????

推荐答案


这篇关于实体框架中select和first之间的区别的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-06 15:49