-
Archives
- November 2010
- March 2010
- February 2010
- September 2009
- August 2009
- July 2009
- June 2009
- May 2009
- April 2009
- March 2009
- February 2009
- January 2009
- December 2008
- November 2008
- October 2008
- September 2008
- July 2008
- June 2008
- May 2008
- April 2008
- March 2008
- February 2008
- January 2008
- December 2007
- November 2007
- October 2007
- September 2007
- August 2007
- July 2007
- June 2007
- May 2007
- April 2007
- March 2007
- February 2007
- January 2007
- December 2006
- November 2006
- October 2006
- September 2006
- August 2006
- July 2006
- June 2006
- May 2006
- April 2006
- March 2006
- February 2006
- January 2006
- December 2005
- November 2005
- October 2005
- August 2005
- July 2005
- June 2005
- May 2005
- April 2005
- March 2005
- February 2005
Monthly Archives: November 2006
Lambda Expressions in C# 3.0 – A little Extension Methods and LINQ Too…
Lambda Expressions in C# 3.0 – A little Extension Methods and LINQ Too… by David Hayden I spent some time with Lambda Expressions in C# 3.0 last night, and they are extremely cool. I haven't played with Expression Trees … Continue reading
Posted in Uncategorized
6 Comments
Extension Methods in C# 3.0
Last night I was reading an eBook, called LINQ for Visual C# 2005, that talked not only about LINQ, but a number of new features in C# 3.0 that make LINQ possible. One of the new features coming in C# … Continue reading
Posted in Uncategorized
6 Comments
Recommendations for Getting Started with MySQL, PostgreSQL, Firebird, etc. Databases and ASP.NET?
In the very near future this may cause me to write several tutorials on using different open-source databases with ASP.NET, but for now I am just seeking guidance as I have only used Oracle and SQL Server on development projects. I planned to … Continue reading
Posted in Uncategorized
18 Comments
SqlDoc for Documenting Databases – Currently in Beta from Red Gate
This weekend I wanted to investigate both SQL Doc from Red Gate Software and Data Dictionary Creator on CodePlex for documenting my databases. My goal is to find something I can run from a command line as part of the … Continue reading
Posted in Uncategorized
1 Comment
Expert .NET Delivery Using NAnt and CruiseControl.NET Book Review
Over the past month I have been spending a lot of time with NAnt. It is used a lot on my development teams, but I have never been the one responsible for configuring and integrating it into the build process. … Continue reading
Posted in Uncategorized
2 Comments
Generating Database Scripts Using SQL Server Management Studio
This should be filed under the category, "I am the only one who missed this!" All this time I was questioning why SQL Server Management Studio wouldn't allow me to generate Database Scripts for all the objects in a database. This was … Continue reading
Posted in Uncategorized
7 Comments
Generating Documentation using Sandcastle During the Build Process
It took me a head-scratching 2 hours, but last night I incorporated Sandcastle in the build process to generate some decent looking documentation for a personal project. This is probably old school to many of you, but this is my … Continue reading
Posted in Uncategorized
1 Comment
SQL Refactor Rocks!
I am creating a test database this afternoon that I can use with my integration tests, and while doing so, I tried out SQL Refactor. Cleaning Up a Simple Stored Procedure I had a very simple stored procedure I needed to … Continue reading
Posted in Uncategorized
2 Comments
Provider Model Revisited – Love It, Hate It, Or Indifferent?
I remember when the provider model first came out and how I latched onto it like a duck on a june bug Many of the applications delivered to customers soon after its introduction used the provider model, especially for the data … Continue reading
Posted in Uncategorized
6 Comments
Using the new and class keywords with .NET Generics
The other day I was digging through some source code and stumbled upon something similar to this: public class ObjectFactory<T> where T : new() { public T Construct() { return new T(); } } I was curious what the generic constraint … Continue reading
Posted in Uncategorized
1 Comment