| | |
| | | var parters = allParterList?.Where(x => (!string.IsNullOrEmpty(x.Code) && x.Code.Contains(condition)) |
| | | || (!string.IsNullOrEmpty(x.Name) && x.Name.Contains(condition)) |
| | | || (!string.IsNullOrEmpty(x.Catalog) && x.Catalog.Contains(condition)) |
| | | || (!string.IsNullOrEmpty(x.Description) && x.Description.Contains(condition)) |
| | | || (!string.IsNullOrEmpty(x.ModelType) && x.ModelType.Contains(condition)) |
| | | ).ToList(); |
| | | _allBindingList = new List<XhsProjectSimulationSearchViewModel>(); |
| | | if (parters != null && parters.Count > 0) |