We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5b6f83f commit e305831Copy full SHA for e305831
1 file changed
Helper/DataAccess.cs
@@ -221,7 +221,7 @@ public static List<MissingComponentData> GetMissingComponentData()
221
DataTable compData = GetComponentData(datasetId);
222
223
//get all years where data rows less then 50, that means not all plots has data
224
- var years = compData.AsEnumerable().GroupBy(x => x.Field<DateTime>("Year")).Where(g => g.Count() < 50).ToList();
+ var years = compData.AsEnumerable().GroupBy(x => x.Field<DateTime>("Year")).Where(g => g.Count() < 150).ToList();
225
226
foreach (var i in years)
227
{
0 commit comments