0
Dicky.tech@gmail.com created
1 Answer(s)
-
0
Hi, you should get child entity records through its own APIs, by passing the master entity's Id. For example, if you have
Book
master entity, and aBookDetail
child entity that is associated with theBook
entity, then you can get the child entities (book details) via an endpoint like this:https://localhost:44363/api/app/book-details/by-book-id?bookId=<bookId>&skipCount=0&maxResultCount=10
So, you can update the endpoint above for your entities, and get the child entities.