The DataGridView control is not displaying text. I am not getting any error, but I think I am not able to bind DataGrid properly. I have used the following code:
private void BindGridView()
{
List<OrganizationType> ListAllOrganizationType = obj_OrganizationType.SelectAll();
string OrganizationNameSearch = cmb_OrganizationTypeName.Text.ToString().ToLower();
var ListOrganzaitionType = (List<OrganizationType>)(from OrgType in ListAllOrganizationType where (OrganizationNameSearch == string.Empty ? true : (OrgType.TypeName.ToLower().Contains(OrganizationNameSearch))) select OrgType).ToList();
if (ListOrganzaitionType.Count > 0)
{
gv_OrganizationType.DataSource = new List<OrganizationType>(ListOrganzaitionType);
}
else
{
MessageBox.Show("No Records Found", "Alert");
}
}
SelectAll() is a method which fetches the list or Organization from the database.
Kindly let me know what is the error in this code.
Thank you.