If this error finds you while doing EntityFramework migration my experience may help.
I have a solution like this:
ExampleSolution
- Example.Data
- Example.Web
The DbContext resides in my Example.Data project and the Example.Web is the startup project that...
Thursday, August 21, 2014
Sunday, May 18, 2014
Sublime Text 2: Change background and foreground color of the terminal (Terminal Plugin)

I use "Terminal" plugin for Sublime Text 2. Now, when I open the Powershell with the "Open Terminal Here..." command I get this weird color combination.
Needless to say I don't like it. I like the default...
Saturday, January 29, 2011
Nhibernate: Send update queries even when no change made.
Disclaimer: The test shown here may not be the best practice.
In my last post I showed a bizarre behavior of Nhibernate. Here is what I wrote,
“When we flush and commit an ISession in Nhibernate, it goes to database to flush all changes even if you just make nothing but some select...
Wednesday, January 26, 2011
NHibernate.TransientObjectException: object references an unsaved transient instance
***Edit: please see the next post where i explained this behavior.
When we flush and commit an ISession in Nhibernate, it goes to database to flush all changes even if you just make nothing but some select queries***. Here is an experimental test case and its result: ...