I am not strong in LinQ So I try to check if two property is not null and one of them is equal variable number
so
public static string FilldrpRequestExecutionUnitsEmployee(int unitID)
{
List<ApplicationStep> myAppList =
new ApplicationStepLogic(ApplicationType.Web)
.GetAll()
.Where(x => x.UnitId ==(int?) unitID && (x.UnitId && x.variable != null));
return "";
}
please help I am linq beginner