try
{
Context.SaveChanges();
}
catch(Exception e)
{
Log(e);
}
finally
{
Log("Complete");
}
When Context.SaveChanges() is called it silently fails. An exception is not thrown and the finally clause is never hit. Has anyone run into this before?
In the end my problem was my POCO file didn’t match the Database 🙁
I wonder why though there was no exception thrown…