本文介绍了使 Linq 区分大小写的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我将 vs 2010 与 linq to sql 和 sql server 2008 一起使用.我将如何区分大小写
I am using vs 2010 with linq to sql and sql server 2008. how would i made this case sensitive
var Groups = from gp in _db.Groups
where gp.vcr_GroupName == GroupName
select gp;
这里groupname=abc
和groupname=ABC
是一样的
推荐答案
假设 GroupName 是一个字符串,可以做一个简单的字符串比较并忽略大小写:
Assuming GroupName is a string, you can do a simple string comparison and ignore case:
var Groups = from gp in _db.Groups
where gp.vcr_GroupName.Equals(GroupName, StringComparison.OrdinalIgnoreCase)
select gp;
这篇关于使 Linq 区分大小写的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!