Thoughts on Software Development, .Net, OOP, Design Patterns and all things cool
Browse by Tags
All Tags »
Development »
.Net (
RSS)
-
|
In my last post I talked about how you can share a single config file among multiple project in a solution. One of the feedback comments I got was how to have a single config file for multiple developers or even multiple environments. So,...
|
-
|
Over the past few weeks I have worked on a few products for my client that will be used as API's. These API's will be used by either their own (external) clients or other internal departments. Working on these projects made me think...
|
-
|
In the past I have written about the Fail Fast principle. This is a principle I try to live my development life by. I would rather explicitly check for possible failure points then have a runtime error crop up. In the past when writing...
|
-
|
This post is another in the recent string of How-to's. But it is just so hard to resist. .Net 3.5 has so many cool features, it is just fun to explore them all. Ok, so here is the issue we are going to solve today. We have a list of entities and we...
|
-
|
Today I ran into a case where I needed to convert a result set of IEnumerable<Entity> from a Linq2Sql command to a List<IEntity> in order to return the data back to the caller. We all know that giving the following code public...
|
-
|
The System.ComponentModel namespace (more information here ) in .Net contains an array of various attributes that every .Net developer should know about. These attributes provide a way for the developer to implement design-time and run-time behavior...
|
-
|
Today I was refactoring some sql procs along with the corresponding .net code that called the procs. My primary focus was to implement some new business rules (ways to get totals) in the proc. In doing so, I completely re-wrote the proc. In...
|
-
|
I just thought I would share a little trick I used today to back in Async web service calls into existing code using anonymous delegates. Here was my problem: I have a library that makes use of an existing web service that I do not control (so I cannot...
|
-
|
I thought I would post a quick 'Getting-Started' guide for MOSS development. This post comes from my experience learning how to develop for MOSS. This post is a quick listing of what is needed to get your environment up and running. As you may...
|
-
|
If you have ever worked with XML, you know that XPath is your friend. Today I working with an XML document that was generated via MSWord and the generated document was well formed and included namespaces. Now, I have worked with namespaces in XML in the...
|
-
|
What do you do when you are writing a test for a piece of code that calls out to an ‘out of your control’ service such as a web service or email server? If you are like most of us, you simply allow your test to make the call and ‘hope’ that the service...
|
-
|
Have ever wanted to use a concrete class as both the the PluginFamily and Plugable (information on StructureMap's attributes here ) type in StructureMap ? I know I have, just today in fact (not the first time, but thought I would post about it this time...
|
-
|
For the latest thing I am doing at work I need to be able to grab some data from Sharepoint. I have chosen to do this by consuming SPServices.asmx server that is available. Because I was not able to find a decent post on the net on how to use/consume...
|
-
|
I finally got around to installing Orcas on my laptop this weekend. You are probably asking yourself, what took so long? Simple, my laptop did not have the spare 14gigs needed in order to get it up and running. It took some pretty major house cleaning...
|
-
|
Over the years I have come to the conclusion when working with switch statements that switches on enum values, a DEFAULT block MUST be required. Not only should it be required, I think it should throw a developer exception. *** NOTE *** My stance on this...
|
More Posts
Next page »