Browse by Tags

All Tags » c# (RSS)

MiniBuss on Codeplex by jdanforth

The micro service bus framework for msmq called MiniBuss is now open source on Codeplex at http://minibuss.codeplex.com There is also now a NuGet package available for easy install into projects: If you’re interested in co-op on this project, please contact...

Create Tag-Cloud from RSS Feed in ASP.NET MVC by jdanforth

Say you want to generate your own tag-cloud from a list of categories or tags you pull from an RSS-feed or similar. This is one way to do it. I’m using ASP.NET MVC for this sample which creates a simple tag-cloud in a Razor-view with HTML looking something...
Filed under: , ,

Refactored Dapper Extensions by jdanforth

Making extensions for Dapper-dot-net was so fun and I needed a few more simple ones so I refactored a bit and made a few Update() and Delete() extensions as well. I’m also looking for Id-properties with the [Key] attribute on them. The class grew a bit...
Filed under: ,

Simple Insert Extension for Dapper by jdanforth

Last week I started using Dapper ( dapper-dot-net on Google Code ) for a project I’m working on. Dapper is a micro ORM, which extends IDbConnection. It’s very fast and works very well for queries where you want to return both typed and dynamic lists of...
Filed under: ,

Case Switching on CLR Types by jdanforth

As most .NET developers know, you cannot do case/switch on CLR types and one of the reasons for it was explained pretty well years ago by Peter Hallam on the C# team . But there are many cases where you would like to iterate through a list of objects...
Filed under: , ,
More Posts