Wednesday, February 20, 2013
7 Things Developers Should Know About SQL Server
This is from Brent Ozar: http://www.brentozar.com/archive/2013/02/7-things-developers-should-know-about-sql-server/
Sunday, February 17, 2013
The reality of a developer's life
Very funny link for us developers :-)
http://www.lordofthejars.com/
Wednesday, February 13, 2013
EF decimal precision
Encountered a strange problem at work. Entity framework code first, entity's decimal field always save to 2 decimal points even though the field has 4. Turned out in EF4 you need to specify percision:
modelBuilder.Entity().Property(e=> e.property).HasPrecision(x, d);
Subscribe to:
Posts (Atom)