3 つのフィールドのテキスト ボックスにクエリ エクステンダーを適用しました。動作していますが、大文字と小文字が区別されます。たとえば、ユーザー名フィールドに「AWAIS」という名前があり、「awais」を検索すると、検索されず、その逆も同様です。感度を削除するにはどうすればよいですか?
私のコードは
<td>
<asp:LinqDataSource ID="LinqDataSource1" runat="server" ContextTypeName="BookStore.Bussines.Entities.BookStoreEntities"
OnSelecting="LinqDataSource1_Selecting">
</asp:LinqDataSource>
<asp:QueryExtender ID="qeSearch" runat="server" TargetControlID="LinqDataSource1">
<asp:SearchExpression DataFields="DISTRIBUTOR_NAME,DISTRIBUTOR_CODE,DISTRIBUTOR_URL" SearchType="Contains">
<asp:ControlParameter ControlID="txtSearchDistributor" />
</asp:SearchExpression>
</asp:QueryExtender>
</td>