Is it possible to pass an SQL script to some method that the Entity Framework should use for my model? for example equivalent:
context.ExecuteStoreCommand(<tsql script path>);
Reference Information. I need a way to reset the database during unit tests, and making a call to run the created EF TSQL script (from the Generate Database from Model) seems to be one way to achieve this.
Greg
source share