I am curious about what the most performant method to fetch a specific record from a database given the record id is.The only methods I'm familiar with would be:1) Use the 'Get' action created with the DB entity2) Use an aggregate, set the source to the desired DB entity, and filter by id.Which would be faster, and why?Or is there anther method that would be faster than either of those two?Thank you!
Hi,
See this article that has a detailed explanation of the differences between the two cases, it's a good article.
Best regards,
Pedro C.
Thanks for pointing me to that article Pedro!That's really in depth, I appreciate your help.