DavyBrion

Stories kicked by DavyBrion

Tired Of Working With Big Visual Studio Solutions?(davybrion.com)

submitted by DavyBrionDavyBrion(345) 3 years, 4 months ago

a simple trick to make working with big Visual Studio solutions much more bearable read more...

add a comment |category: |Views: 925

tags: another

Contributing to OSS – Creating a test case & patch(tunatoksoz.com)

submitted by tehliketehlike(1000) 3 years, 5 months ago

In this post Tuna tries to show how one can contribute to OSS, specifically NHibernate, projects by creating tests. read more...

add a comment |category: |Views: 78

tags: another

Genesis: Bridging The Gap Between Requirements And Code(davybrion.com)

submitted by teranexteranex(60) 3 years, 5 months ago

About the Genesis methodology and toolkit for software developers, that links unit tests to requirements in the functional analysis document... read more...

add a comment |category: |Views: 285

tags: another

How To Write Testable ASP.NET UserControls(davybrion.com)

submitted by DavyBrionDavyBrion(345) 3 years, 7 months ago

This approach makes it possible to create UserControls which you can easily write unit tests for, and you can reuse the UserControls in containing pages while remaining the flexibility to write unit tests for those containing pages without being dependent on the actual implementation of the UserControl. read more...

add a comment |category: |Views: 27

tags: another

.NET Memory Management(davybrion.com)

submitted by DavyBrionDavyBrion(345) 3 years, 9 months ago

Garbage Collection sure is great, isn’t it? We don’t have to keep track of all the memory we’ve allocated and we don’t need to release that memory when it’s no longer needed. Because that is after all what the Garbage Collector does for us, without us having to worry about it. This is actually a widespread misconception among many .NET developers. It’s true that Garbage Collection makes memory management a lot easier, but we simply can’t rely on it all the time. There are most certainly some things you must always keep in mind when it comes to memory management in .NET. read more...

add a comment |category: |Views: 26

tags: another

The Wannabe Developer’s Manifesto(davybrion.com)

submitted by DavyBrionDavyBrion(345) 3 years, 9 months ago

I’m sure most of us have been confronted with a ‘Wannabe Developer’ at least once, probably a lot more even. The Wannabe Developers are such a large group that i think they should have their own manifesto. I dislike Wannabe Developers as much as anyone, but i’m in a generous mood today so i’ve taken the liberty to write that manifesto. I can only hope they find it useful. read more...

add a comment |category: |Views: 13

tags: another

Link blogs… do yourself a favor(davybrion.com)

submitted by alashcraftalashcraft(1180) 3 years, 9 months ago

I’m currently subscribed to 110 feeds and everyday the number of unread posts is going up. It seems like i just can’t catch up anymore. Of all those unread posts, a lot will be very interesting, but there will also be quite a few that won’t interest me that much. So i’m going to cut back on the number of feeds i’m subscribed to, and i’m going to rely on some fantastic links blogs to point me to the best posts. read more...

2 comments |category: |Views: 316

tags: another

My Favorite .NET Link Blogs(nayyeri.net)

submitted by alashcraftalashcraft(1180) 3 years, 9 months ago

Link blogs are one of the common types of blogs that are actually a list of links to other resources in a specific field. At first glance, it seems easy to collect some links and present them in a blog post and somehow this statement is right but there are some people who don’t take it easy and put a good effort to present great link blogs. read more...

add a comment |category: |Views: 563

tags: another

Automated KnownType management in WCF(davybrion.com)

submitted by DavyBrionDavyBrion(345) 3 years, 10 months ago

In this post i discuss a class which allows you to easily register base types with their derived Known Types for WCF service methods. This technique makes it a lot easier to deal with many KnownTypes in WCF. read more...

add a comment |category: |Views: 281

tags: another

Project anti-pattern: Many projects in a Visual Studio Solution File(lostechies.com)

submitted by terrbleterrble(1665) 3 years, 10 months ago

I've been hearing from several colleagues about how their Visual Studio solution files have many (i.e. more than 10, and usually more than 30 -- in one case, more than 100!). So far, none of them have been able to give me any good explanation for why this is and most of them hate it but they can't change it because their architect/lead/whatever won't let them. I'm hoping that by getting the discussion going on this in the greater community, we can try to discourage everyone from having lots of projects in a solution. read more...

add a comment |category: |Views: 477

tags: another

NHibernate: Testing The Performance Urban Legend(iamnotmyself.com)

submitted by NotMyselfNotMyself(215) 3 years, 10 months ago

I wanted to challenge the dogmatic urban legend passed down from .NET developer to .NET developer since the classic ASP days. That dogma simply states you should always access your database via stored procedure for "performance reasons". Inline SQL is BAAAAAAD. So I fired up Visual Studio, created a class and started writing tests. read more...

2 comments |category: |Views: 398

tags: another

Can someone tell me why i shouldn't drop WCF?(davybrion.com)

submitted by DavyBrionDavyBrion(345) 3 years, 10 months ago

In this post i question the usage of a WCF service layer instead of going for a NServiceBus based messaging approach read more...

add a comment |category: |Views: 564

tags: another

How To Write Testable ASP.NET WebForms(davybrion.com)

submitted by DavyBrionDavyBrion(345) 3 years, 10 months ago

Microsoft’s upcoming ASP.NET MCV framework makes it easy to write tests for your application layer logic. But what about those of us who are stuck with ASP.NET WebForms? You can still write highly testable ASP.NET WebForms with only a little bit of extra effort. But that extra effort really pays off in the long run. In this post, i’ll give a detailed description of one approach that has worked for me really well. read more...

add a comment |category: |Views: 411

tags: another

Data Access With NHibernate(davybrion.com)

submitted by DavyBrionDavyBrion(345) 3 years, 10 months ago

Shows a simple base class that provides many of the basic Data Access requirements using NHibernate read more...

add a comment |category: |Views: 32

tags: another

Conditional Queueing Of Statements(davybrion.com)

submitted by DavyBrionDavyBrion(345) 3 years, 10 months ago

Shows a technique to implement conditional queueing of blocks of code depending on either a default condition, or a condition per block of code. read more...

add a comment |category: |Views: 12

tags: another

Disposing of the IDisposable implementation(davybrion.com)

submitted by DavyBrionDavyBrion(345) 3 years, 10 months ago

Shows a way to put the recommended IDisposable implementation in a base class, with virtual methods to perform the actual disposal of IDisposables at the right time read more...

add a comment |category: |Views: 32

tags: another