Get all tables that have reference with one table

Hello,
Given one table, I would like to have the list of all the tables that have a reference in foreign Keys on that table…

Is that possibile? Do I have to get the list of all tables and check one by one?

Thank you

Regards,
Mirko

There’s no special API for it, depending on how you’ve defined your references, you’d need to use Reflection to follow the [Reference], [References] or [ForeignKey] attributes on your tables public properties to generate the list manually.