Asp.net – How to apply multiple conditions in Datatable.Select in C#
I want to apply multiple conditions in Datatable.Select query how can I do this. Below is the code that I have: dvOrg.Table.Select("customer_type_id='64501'", "sort_column"); Now I want to apply one more condition covered_patient_type='Inpatient'. I tried this but it did not work.…