I am new to Domain Pattern, I need to ensure that I understand what I had read so far!!, Please tell me whether the following sentences are true or did not violate a principle related to DDD

0) DAL will receive parameters in DTO and return fetched data in LIST of DTO (Entity)
1) De-couple BLL and DAL through repository pattern.
2) Entity is DTO object.
3) ProductCategoryData contains a list of ProductData.
4) It will be Anemic Domain Model ANTI Pattern if BLL.ProductCategory does not contain properties that describe the business object.
5) BLL.ProductCategory contains a List of BLL.Product……I have bad feeling about this
6) I avoid in that design anemic domain model anti pattern.
7) I successfully Apply Domain Model Pattern.
8) I used DTO objects to transfer data between tiers.
Please talk to me 🙂
If that is the interface and there are no methods on your objects then that is still an anemic model.
The Repository should be associate to the aggregates of the model.
I your model only contains those entities then does not really matter how bad or good the design is
because the overall complexity will be low.
Also choose better names for your model, and avoid generic names like “Data”.
The reader immediately asks: what kind of data ?