You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have this specific error with linq:
"System.NotSupportedException: 'The expression '[s].Node.Contains("0")', type: 'System.Linq.Expressions.MethodCallExpression' is not supported.'"
this is the code:
var query = (from s in InfluxDBQueryable<Record>.Queryable(BucketName,
Organization,
queryApiTest,
memberResolver)
where s.Measurament == _MEASUREMENT_LAST_DATA
&& s.Node.Contains(0.ToString())
select s).ToList();
The text was updated successfully, but these errors were encountered:
I have this specific error with linq:
"System.NotSupportedException: 'The expression '[s].Node.Contains("0")', type: 'System.Linq.Expressions.MethodCallExpression' is not supported.'"
this is the code:
The text was updated successfully, but these errors were encountered: