Adventures with the Entity Framework and the Repository Pattern
Posted by Martyn at 8/20/2009 1:09:32 AM
So far in my applications, I have been using the Entity Framework for object persistence (why? SQLite is why). Unfortunately, I also like to write lots of unit tests. Normally, this would be a problem, as the entity container would be coupled to the controllers.
Read MoreTags: Patterns | EntityFramework
Visual Studio 2010 jQuery intellisense
Posted by Martyn at 6/13/2009 12:14:19 AM
Just a quick post for something I only today noticed in the Visual Studio 2010 beta – and its damned cool.
Read MoreTags: jQuery
The problem with ASP.NET MVC - "spaghetti code"
Posted by Martyn at 4/9/2009 5:59:09 PM
I apologise in advance if this post seems slightly incoherent - I write this whilst on a train, and its quite a bumpy ride. Also, another disclaimer - the code you're about to see will be soon heavily refactored and improved; don't expect it in this state to be amazing! For one, truncating the post content will be moved to the model level, and the post mark-up will be moved to a user control.
Read MoreMy experiences with ASP.NET Dynamic Data
Posted by Martyn at 3/23/2009 2:47:59 PM
Not long ago I had no idea what the point of ASP.NET Dynamic Data was. I simply could not 'grok' it, until very recently when I tried using it for a client's CMS.
Read MoreTags: ASP.NET | DynamicData
ASP.NET MVC released
Posted by Martyn at 3/20/2009 2:12:03 PM
Nice to see that finally ASP.NET MVC has been released! Been using it since the very first preview, and it's been a blast.
Read MoreTags: Silverlight | MVC
Consuming ADO.NET Data Services from jQuery
Posted by Martyn at 3/10/2009 6:23:28 PM
One thing that has certainly sped up my development time is using ADO.NET Data Services with my AJAX. Instead of having to build controller actions or a web service to grab the data, i can just consume it from the data service directly.
Read MoreTags: jQuery | DataServices
ADO.NET Data Services
Posted by Martyn at 2/12/2009 6:25:23 PM
Been playing around with ADO.NET Data Services this morning - really cool how you can point it at your (Entity Framework in this case) data model, and it fully exposes it via a web service.
Read MoreTags: WCF | DataServices