文字列値で同様のクエリを使用したい。私はこのように書いていますが、「_」は文字列から文字を受け入れるためのものです。しかし、うまくいきません。クエリ文字列は正しいですか? 助けてください 。
userName = nvc["user_name"];
string userName_Remove_First = userName.Substring(1); //Removes the first character of userName
string Last = userName_Remove_First.Remove(userName_Remove_First.Length - 1); //Removes the last character of userName_Remove_First
SqlCommand cmd = new SqlCommand("select student_id,student_name from student_details where student_id LIKE ('"+last+"_') ", con);
SqlDataReader dr = cmd.ExecuteReader();