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;
上一篇: python编码规范
下一篇: python的基本函数使用(持续更新)