LINQ to SQL - FROM X WHERE X = “1”选择Y
我有一个关于 LINQ 中的查询的问题:
DataClasses1DataContext db = new DataClasses1DataContext();
var shpnme = from p in db.Orders
where p.ShipCity == "A"
select p.ShipName;
我是否正确地相信数据库将使用 Orders 数据库,并且在“ShipCity”中任何条目=“A”它将返回该 ShipCity 条目的船名?
还可以做通配符吗?例如A*
I have a question regarding a query in LINQ:
DataClasses1DataContext db = new DataClasses1DataContext();
var shpnme = from p in db.Orders
where p.ShipCity == "A"
select p.ShipName;
Am I correct in believing that the database will use the Orders database, and where in "ShipCity" any entries = "A" it will return the Shipname of that ShipCity's entry?
Also can you do a wildcard? e.g. A*
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
是的,你是对的,这将返回所有 ShipCity 等于 "A" 的 ShipNames。可以使用
.Contains()
、.StartsWith()
和.EndsWith()
完成某种通配符搜索Yes you are correct, this will return all ShipNames where the ShipCity equals "A" . A sort-of wildcard search can be done using
.Contains()
,.StartsWith()
and.EndsWith()
它将使用订单表,而不是数据库。数据库在逻辑上等同于 LINQ to SQL 中的上下文。否则你的假设是正确的。
要使用通配符,请使用
StartsWith()
方法。It will use the Orders table, not database. The database is logically equal to the context in LINQ to SQL. Otherwise your assumptions are correct.
To do a wildcard, use the
StartsWith()
method.您可以在此解决方案中使用
.Contains()、.StartsWith() 和 .EndsWith()
you can do with
.Contains(), .StartsWith() and .EndsWith()
in this solution