Videos tagged with Red-Gate.com
In this episode we are going to start to take a look at the Lucene.Net Search Engine Library. Lucene.Net is a source code, class-per-class, API-per-API and algorithmatic port of the Java Lucene search engine to the C# and .NET platform utilizing Microsoft .NET Framework. In this episode we will learn the basics needed to simply get Lucene.net up and running.
DimeCasts.Net #144: Learning the Iterator Pattern
In this episode we are going to take a look at how to use the Iterator Design Pattern.We will look at how using the Iterator Pattern can help you abstract the way in which you interact with a collection of data. This is helpful when you are working with various formats but you would like to create a constant way to work with each format.
DimeCasts.Net #142: Isolation Frameworks: Learning to use Partial Mocks
In this episode we are going to continue our series on learning how to use an isolation framework (Rhino Mocks) to help create simpler and more reliable unit tests.This time around we are going to be focusing how to use Partial Mocks to test abstract classes and methods within a concrete class.
DimeCasts.Net #141: Learning Nant: Creating Token Driving Configuration Files
In this episode we are going to continue our series on how to create a build script using the Nant build tool.In this episode we going to take a look at how we can create dynamic config files by putting tokens in your files and letting Nant replace those tokens for each user based on their unique settings.
DimeCasts.Net #140: Using Reflection to Invoke members
In this episode we are going to take a look at how to use the reflection to invoke members on an objectReflection can allow you to call methods, properties, etc of any scope on an object. This can be a very, very useful tool for the tool-belt for the times this is needed.
DimeCasts.Net #139: Learning the Specification Pattern
In this episode we are going to take a look at how to use the specification pattern.Business logic is the heartbeat of our application. It is what makes your application worth something to the business. In this episode we will explore the Specification Pattern and see how this simple pattern take your complex business logic and turn it into a more manageable and readable piece of art.
DimeCasts.Net #138: Isolation Frameworks: Mocking Out/Ref Arguments
In this episode we are going to continue our series on learning how to use an isolation framework (Rhino Mocks) to help create simpler and more reliable unit tests.We are going to focusing this episode on how to setup you mocks when you need to mock a class with either Out or Ref arguements.
DimeCasts.Net #137: Exploring Reflection: Using Reflection to find Markers
In this episode we are going to take a look at how to find varous markers (interfaces and attributes) on a class by using reflection. This technique can help you to build out dynamic loading/find type of logic in your pluggable applications.
DimeCasts.Net #136: Exploring NDJango: Forms and Extensions
In this second episode on NDJango view engine, we are gonig to continue converting the sample application we started last time. However, this time we are going to focus on creating forms, re-displaying data, and finally, creating our own NDjango tags without touching F#
DimeCasts.Net #135: Exploring StructureMap: Learning how to setup profiles
In this episode we are going to continue our series were we are exploring some of the features of StructureMap 2.5.In this episode we are going to take a look at how to setup profiles to allow the container to dynamicly determine which objects to inject.