标签: search linq-to-sql wildcard
我想使用LINQ to SQL进行通配符搜索。 使用Contains,StartsWith,EndsWith only 。 (不是" SqlMethods.Like"方法)
? - 任何角色(唯一的) * - 任何字符(零或更多)
有办法做到这一点吗?
此致
答案 0 :(得分:0)
不,这是不可能的。如果匹配表达式中同时包含?和*,则无法转换?。
?
*
另外,要自行转换?,需要使用Length。
Length