Model.GetData.Where(p => p.Value != null).ToList();
I have values in my database like below,
My Value Column:
Null
Null
5
16
ExampleValue1
ExampleValue2
p.value is string
I only want to see "ExampleValue1" and "ExampleValue2". How can i get datas not null and not numeric ?