from post in context.Posts
where post.Title == "title1"
select post在Oracle里,这样是查不到数据的。必须要加上“TrimEnd()”,即改写如下:
from post in context.Posts
where post.Title.TrimEnd() == "title1"
select post是我不会用呢,还Oracle本来就是这样,这样用的话,该字段的索引还有用吗?????
- 3 回答
- 0 关注
- 980 浏览
添加回答
举报
0/150
提交
取消