Dive into the archives.
- 59 Days of Code: Fluent NHibernate OR/M
To begin elaborating on frameworks and development decisions for the 59 Days of Code contest, the first thing I wanted to invest in was a good and stable OR/M framework. Initially I was going to go with the new version of Entity Framework 4.0 with .NET but reading a little more into my options, I [...]
- Free Ebook: Foundations of Programming by Karl Seguin
If you’re interested in a really great ebook, check out this completely free ebook by Karl Seguin called Foundations of Programming. Download
- Multiple Roles with Authorize Attribute using Enums in ASP.NET MVC
In MVC, if you have ever used the [Authorize] attribute you will know that there are two options of using it by decorating your controller or action. Either with pre-determined users: [Authorize(Users = "Bob, John")] public class OrdersController : Controller { } Or with pre-determined roles: [Authorize(Roles = "Admin, User")] public class OrdersController : Controller [...]

