By tag: DanMorphis
0
kicks
De-crapify your code base with AOP using PostSharp
How to remove all the code thats irrelevant to what your trying to do, to make your code base easier to grok.
0
kicks
Using Visual Studio Macros to Increase Productivity
If you've ever tried to find a particular file or project in a 36 project solution when many projects and folders are expanded, then you know how fustrating it can be. After putting up with it for over a year, I finally asked a co-worker of mine if he knew of a way to quickly jump to a particular pr...
0
kicks
Using Custom Attributes to Enable Quick Searching of Your Domain Entit
I've started work on the search piece of our application. Searching (no pun intended) for some inspiration on how users might want to search within our application, I brought up the current WinForms version, and then the ASP.NET version.
I realized that we need to make searching easier in WinFor...
0
kicks
NHibernate, DateTime and UTC
We are in the midst of doing a total rewrite of our Software, and one of the things that has come up is date and time. How do we do it, how do we store it, and how do we ensure that we can compare DateTime from one timezone to DateTime in another timezone. After a lot of research, we settled on us...
0
kicks
CompositeUserTypes in NHibernate
Often times when you’re developing an application, there is a one-to-one mapping between your domain model (object model) and your database schema. Doing it this way often times makes it easier to wrap your head around everything going on in your app. But this isn’t always the right way to do thin...