public Task BatchUpdateAsync<TProperty>(Expression<Func<TEntity, bool>> predicate, Expression<Func<TEntity, TProperty>> Property, object value) { return Context.Set<TEntity>().Where(predicate).SetField(Property).WithValue(value).UpdateAsync(); }
error No mapping to a relational type can be found for the CLR type 'CancellationToken'.