欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Entity Framework所支持的规范函数(Entity SQL)

程序员文章站 2022-04-11 17:41:06
...
分类 支持的方法或属性
system.string静态方法 Concat0、 Equals0. IsNullOrEmpty()
string.string实例方法 ToLower(),Touppper()), Trim(),lndexof(). Replace(). Substring(),Contains(),Endwith(),StartWith()
数字(int16,int32,double) Abs(),Ceiling(),Floor(),Power( value,exponent),Truncate( ),Round( value )
DateTime Equals()
Guid NewGuid()

示例:

错误写法:

var stulist=from stu in student 
				where stu.Birthday>Convert.ToDateTime("1999-01-01") 
				select stu

正确写法:

DateTime birthday=Convert.ToDateTime("1999-01-01");
var stulist=from stu in student 
			where stu.Birthday>birthday 
			select stu;

方法详情

相关标签: Entity FrameWork