When I am running tests on my Respiratory code the tables are dropped and created and fresh data is added for tests using
new SchemaExport(_configuration).Execute(false, true, false);
However it is enforcing referential integrity, in production this will be fine but in testing I require this to not be on.
Is there any way to disable them when creating the tables with the code above?