Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
列の名前が次のようなデータセット内のすべての行を返したいコード行があります
var rows = data.Tables[0].Select("Name like '" + username+ "['");
したがって、基本的には、名前という列にユーザー名があり、[その直後に
[
例えば
John [Smith] John [Kelly]
[名前の直後にがあるため、上記の関数はこれらの両方を返す必要があります。
「[」の後に「%」を追加
var rows = data.Tables[0].Select("Name like '" + username+ " [[]%'");