Foreign Keys from a SqlConnection.GetSchema ()

1

Is it possible to get all Foreign Keys names from a bank without having to make a select?

I tried GetSchema and found all the PK, IX, UQ, minus the FK.

    
asked by anonymous 09.05.2016 / 16:38

1 answer

0

sqlConnection.GetSchema("ForeignKeys");

    
09.05.2016 / 17:23