elbandit

Stories submitted by elbandit

ASP.NET MVC- Single Responsibility Principle and Tall Controllers(www.elbandit.co.uk)

submitted by elbanditelbandit(40) 1 year, 3 months ago

How to keep thin ASP.MVC controllers short read more...

add a comment |category: |Views: 9

tags: another

Playing with Value Object Validation(www.elbandit.co.uk)

submitted by elbanditelbandit(40) 1 year, 3 months ago

Playing around with ensuring Value ojects are created in a valid state read more...

add a comment |category: |Views: 3

tags: another

Unit of Work Factory(www.elbandit.co.uk)

submitted by elbanditelbandit(40) 1 year, 3 months ago

One way to implement the unit of work pattern in .net using a unit of workfactory read more...

add a comment |category: |Views: 54

tags: another

BDD style specs with NUnit(www.elbandit.co.uk)

submitted by elbanditelbandit(40) 1 year, 3 months ago

How to write BDD style specifications using NUnit read more...

add a comment |category: |Views: 15

tags: another

Why I'm Loving the ASP.NET MVC Framework(elbandit.co.uk)

submitted by elbanditelbandit(40) 2 years, 10 months ago

As a lot of my work is done on the external web, I keep the code as simple as possible and try to use as few server controls as possible, this is why I am loving the MVC framework. Web forms were a great way to disguise the fact that the web is stateless and a great way for windows devs to get working on the web with relative ease and keep with their exisitng skills. The problem with web forms and the over use of complex server controls was that they abstracted away the raw html from the developer, MVC is giving this power back. Before MVC I had starting to opt to leave out using server controls and instead went back to a classic-ish asp way of doing things with in line scripting, Rob Conery has a great post on this topic with lots of good debat that you should check out. read more...

add a comment |category: |Views: 16

tags: another

Storing the UserID instead of the UserName in the User.Identity.Name O(elbandit.co.uk)

submitted by elbanditelbandit(40) 2 years, 11 months ago

How to store the UserID instead of the UserName in the User.Identity.Name Object when using the Login Control and ASP.net Membership API. read more...

add a comment |category: |Views: 10

tags: another

Wrox Blox NHibernate with ASP.NET Problem–Design–Solution(elbandit.co.uk)

submitted by elbanditelbandit(40) 2 years, 11 months ago

This Wrox Blox demonstrates how to start using NHibernate in line of business applications using ASP.NET and VB.NET. Using NHibernate will speed up your application development by removing the need to build your own Data Access Layer (DAL). In addition, you can focus solely on the business problem instead of the infrastructure concerns. Using a simple demo application as an example, this Wrox Blox shows how easy it is to get started with NHibernate and build your DAL in minutes instead of hours. Readers will also see how the POCO pattern enables you to keep your DAL as unobtrusive as possible as well as being interchangeable for future DAL implementations. You will also see how NHibernate has many enterprise patterns built into it, like the Unit of Work pattern and the Identity Map. read more...

add a comment |category: |Views: 50

tags: another