Consider there is a domain for which a bounded context is to be created. However, nothing should be persisted in this domain. Just a purely task-based logic should be there and a hypothetical domain model won't be updated.
I see no way to apply entity pattern in such domain, only services and value objects come to my mind in this case. I'm now wondering, which one of the following statements is true:
- This is the kind of subdomain that DDD shouldn't be applied to
- The problem is with the strategic design and such subdomain should never be extracted as a separate bounded context
- It is alright to create a domain model with just services and value objects