次のような検索機能が必要です。この機能は、さまざまな種類のワイルドカードを含むすべての文字列を受け入れます。
* or % >>> can replace one or more characters
# >>> used to replace a number
@ >>> used to replace an alphabet
? >>> used to replace a character (can be both number and alphabet)
私が知っているように、LINQ には文字列を検索するための 3 つの関数があります: StartsWith、EndsWith、Contains です。SQL クエリには、1 文字以上の % と 1 文字のみの _ の 2 種類の LIKE があります。では、どうすればこの問題を解決できますか?
どうもありがとうございました