Creating a project in Team Foundation Server
Category: Others > Microsoft
Posted: 25 Mar 09
In this episode we will walk you through the entire process to create/setup a project enviornment with Team Foundation Server (TFS). After this episode you should be able to create, maintain and use a Team Project.
|
|
Adding a New Feature to DimeCasts.Net - Data Access
Category: Languages > .net
Posted: 25 Mar 09
In this episode we will start a new series where we are going to be walking through the coding process of adding a new feature to the Dimecasts.net website. In this episode we will create the needed data access to allow us to pull the data correctly.
|
|
Introduction to LinqPad
Category: Languages > .net
Posted: 25 Mar 09
In this episode we will learn how to use the LinqPad expression evaluator.
LINQPad is more than just a LINQ query tool: it is a code snippet IDE. Instantly execute any C# 3 or VB 9 expression or statement block!
|
|
|
Testing Abstract classes with Rhino Mocks
Category: Languages > .net
Posted: 25 Mar 09
In this episode we will walk you though how to test your abstract classes with Rhino Mocks.
You will learn how that by using a mocking framework you can simplify and reduce the friction in testing your abstract classes and methods.
|
|
Generating an RSS Feed with Argotic
Category: Languages > .net
Posted: 25 Mar 09
In this episode we will walk you though how to create and implement an RSS feed using the Argotic RSS framework.
We will walk through generating the document, creating the feed access point and finally creating the hooks so the world knows we have a feed.
|
|
Learning the Check-in Dance
Category: Tools > Version Control
Posted: 25 Mar 09
In this episode we will walk you though the various steps that make up the Check-in Dance. The steps of the check-in dance are below:
Compile your local copy of the code
Test your local copy of the code
Get the latest version from source control and merge
Compile the merged versi...
|
|
Performing Subselects with Linq2Sql
Category: Languages > .net
Posted: 25 Mar 09
In this episode we will walk you though the the various ways to perform subselects with Linq2Sql.
We will also take a look at the SQL that is generated. We will be doing all of our coding in this episode in LinqPad
|
|
Setting up a Project for Source Control
Category: Languages > .net
Posted: 25 Mar 09
In this episode we will walk you though the setting up your project to be added to a source control system.
You will also learn how tricks and techniques that allows anyone to do a pull at anytime and compile on the first try.
|
|
Using Linq to query the File System
Category: Languages > .net
Posted: 25 Mar 09
In this episode we will learn how to query an a file system using Linq. By using Linq we can reduce the complexity when it comes trying to find files on our file system.
|
|
Exploring Extension Methods in C# 3.0
Category: Languages > .net
Posted: 25 Mar 09
In this episode we will be exploring a new feature in C# 3.0/.Net 3.5 called Extension Methods.
Extension Methods are a way to allow a developer to extend an object (add new methods) without having to subclass or recompile that object.
|
|
Querying XML Data using XLinq
Category: Languages > .net
Posted: 18 Mar 09
In this episode we will learn how to query an XML document by using the XLinq libraries. XLinq is the Linq implementation on top of an XML document.
We will learn how to us the inline query syntax as well as using SQL style syntax. By the end of the episode you should be able to retrieve...
|
|