How to query Entities.WithNone<DynamicBuffer<T>>() ?

How to create Entities.ForEach job that excludes entities with specific dynamic buffer? I Ask because this gives me error:

.WithNone<DynamicBuffer<MyBufferElement>>()```
```error DC0051: Type DynamicBuffer`1 cannot be used with WithNone as generic types and parameters are not allowed```

.WithNone()

3 Likes

Ohh I see. Thank you!