I\'m calling a stored procedure in Entity Framework 6 that can create Databases and tables if necessary. It is throwing the error;
Message \"CREAT
I found a way:
var snapshotQueueIDParameter = new SqlParameter("SnapshotQueueID", entityId); return _db.Database.ExecuteSqlCommand(TransactionalBehavior.DoNotEnsureTransaction, "EXEC spCreateSnapshotFromQueue @SnapshotQueueID", snapshotQueueIDParameter);