Latest popular stories

Upcoming Story

A few principles for writing blazing fast code in .NET(www.smelser.net)

submitted by JoeGeekyJoeGeeky(359) 18 days, 16 hours ago

Just a few tips to write code that requires higher performance demands read more...

2 comments |category: |Views: 917

tags: another

10 Things ASP.NET Developers Should Know About Web.config Inheritance(weblogs.asp.net)

submitted by jongallowayjongalloway(4350) 23 days, 12 hours ago

Ten things you should know about Web.config inheritance and overrides that will simplify some configuration challenges and help with debugging. Bet there are some you didn't know about! read more...

5 comments |category: |Views: 1241

tags: another

C# 5.0 Async explaned as simple as possible(blogs.infosupport.com)

submitted by iiChrisbiiChrisb(94) 1 month ago

In my own clear style, async programming explained read more...

1 comment |category: |Views: 476

tags: another

Lucene.net - Ultra-fast search for MVC or Webforms(www.codeproject.com)

submitted by dpetersondpeterson(3454) 7 days, 23 hours ago

Mikhail T. has put together an article showing how you can integrate the Java-based Apache Lucene project with your .Net based MVC or WebForms sites, giving you ultra-fast and slick search capabilities. read more...

add a comment |category: |Views: 338

tags: another

New tools for your TDD arsenal(www.beletsky.net)

submitted by dpetersondpeterson(3454) 6 days, 22 hours ago

Alexander Beletsky shares a list of sweet new TDD tools to retrofit into your current load-out, including a tool to automatically re-run tests as you make changes to source code, a replacement for Moq, and some awesome fluent assertions. read more...

add a comment |category: |Views: 318

tags: another

Going Faster: Sexy numbers and full post-mortem(blogs.dotnetkicks.com)

submitted by dpetersondpeterson(3454) 18 days ago

In a followup to my article on how not to suck at serving web content, I go over what we did to improve page performance at DotNetKicks and why it worked. Read the first post if you haven't already: http://blogs.dotnetkicks.com/dnk-jump-in/2011/12/21/going-faster-how-not-to-suck-at-serving-web-content/ read more...

add a comment |category: |Views: 217

tags: another

ASP.NET MVC 3 Real Time Collaborative Apps with SignalR(www.dotnetcurry.com)

submitted by vivekamarvivekamar(5940) 29 days, 3 hours ago

In this article, we’ll create a simple blog app using ASP.NET MVC 3 and SignalR, that will allow multiple collaborators to review the same article in real-time read more...

add a comment |category: |Views: 344

tags: another

Visual Studio Achievements, now a reality!(blog.whiletrue.com)

submitted by rudibrudib(49) 22 days, 19 hours ago

Follow up to last year's comic story on Visual Studio having game-like achievements. read more...

3 comments |category: |Views: 302

tags: another

Phil Haack, Keith Dahlby and Paul Betts on Git for Windows(herdingcode.com)

submitted by jongallowayjongalloway(4350) 20 days, 15 hours ago

Herding Code podcast talking to Phil Haack and Paul Betts (both new GitHubbers) and Keith Dahlby (author of posh-git, a set of PowerShell scripts which provide Git/PowerShell integration) about using Git on Windows. read more...

4 comments |category: |Views: 231

tags: another

Evolution of the Async Controller in ASP.NET MVC(codeclimber.net.nz)

submitted by dpetersondpeterson(3454) 30 days, 21 hours ago

Asynchronous operations in ASP.NET MVC have always been left a bit behind. They appeared in ASP.NET MVC 2, remained untouched in v3, but now in MVC 4 (especially in combination with C# 5 and async/await) they reached the same easiness of use of the standard synchronous controller. Check out that absolutely awesome stuff you can do with them now! read more...

add a comment |category: |Views: 196

tags: another

Simple explanation of the Repository pattern(leoncullens.nl)

submitted by AvalaxyAvalaxy(145) 30 days, 19 hours ago

One of my favorite design patterns is the 'repository pattern'. That's why I decided to dedicate a complete blog post to it. Using the repository pattern in your application can yield a lot of benefits, such as improved testability, easier ways to implement caching and transactions, avoidance of code duplication and it allows you to replace the data source easier (although that probably won't happen too often). read more...

3 comments |category: |Views: 450

tags: another

Sometimes being Lazy is a good thing(softwareblog.alcedo.com)

submitted by fredrikmorkfredrikmork(142) 30 days, 8 hours ago

ConcurrentDictionary.GetOrAdd may cause unwanted side effects where the code that produces the value may be run more than once. This is a discussion of that scenario, along with a TDD-style walk-through of a solution. read more...

3 comments |category: |Views: 185

tags: another

NoSQL MongoDb Enterprise Design with C# .NET, the Repository Pattern(www.primaryobjects.com)

submitted by surfer6surfer6(317) 1 month ago

Learn how to use a NoSQL MongoDb database to create a simple .NET application for displaying Dragons. Our architecture will utilize the repository pattern, combined with a global database context provider. We'll create a 3-tier system for accessing the Dragons, creating, updating, and deleting. read more...

1 comment |category: |Views: 248

tags: another

Using Quartz.Net to Create Scheduled Tasks(corymathews.com)

submitted by vivekamarvivekamar(5940) 29 days, 3 hours ago

Quartz.Net is a full-featured, open source job scheduling system. Basically this system allows an asp.net web application to schedule and run background jobs. This makes it much simpler for us developers by making it so that we do not have to have a windows service running on the server as well. read more...

add a comment |category: |Views: 300

tags: another

In .NET, open source does not beget open source(bvanderveen.com)

submitted by alexandrul.ctalexandrul.ct(475) 30 days, 20 hours ago

Ruby, Python, Perl, Node, and Clojure all have, to varying degrees, a unified story for defining a project, translating its source code into runnable code, running a test suite, building distributable packages, and resolving and installing a project or package’s dependencies. These stories just work across all supported platforms. Setting up a cross-platform open source .NET project is non-trivial. ... read more...

1 comment |category: |Views: 162

tags: another

MVC Asynchronous Controller : The Basics(deanhume.com)

submitted by deanomachinodeanomachino(700) 24 days, 4 hours ago

When I first saw the Asynchronous Controllers introduced in MVC 2, I couldn't wait to start playing around. I thought that it would be a really easy to get up and running with a simple example, but after searching online for a few working examples - pretty much all of them used an event based pattern that wasn't easy to understand. In this blog post I am going to run through a really simple example that will show you the basics of Asynchronous Controllers, and show you how easy they really are. read more...

add a comment |category: |Views: 194

tags: another