in my db i have values as True/False/false/true.... i need to get oly the Distinct Values as True and False and not the all values as True & False & false & true...
my code:
DataTable dv= dt.DefaultView.ToTable(true, col.header);
dv.Casesensitive=true;
but i got the values as True & False & false.
how to avoid both similar values even if they as caps / small letters and to get oly True & False values.
it should be done oly at the backend. in C# not through query......