Click here to Skip to main content
15,896,512 members
Articles / Programming Languages / C#

LinFu.IOC 2.0 in Five Minutes (Part 1 of n): Fun With Attributes

Rate me:
Please Sign up or sign in to vote.
4.98/5 (36 votes)
9 Dec 2008LGPL324 min read 96K   454   74  
The first article in a series of articles that describes how you can use the LinFu.IOC 2.0 container to extend your application(s).
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using LinFu.IoC;
using LinFu.IoC.Configuration;
using System.Data;

namespace ConfigurationStringFactoryClientApp
{
    class Program
    {
        static void Main(string[] args)
        {
            // Configure the container
            var container = new ServiceContainer();
            container.LoadFrom(AppDomain.CurrentDomain.BaseDirectory, "*.dll");

            // Display the connection strings
            Console.WriteLine("Oracle connection string: {0}", container.GetService<string>("OracleConnectionString"));
            Console.WriteLine("SQL Server 2005 connection string: {0}", container.GetService<string>("SQL2k5ConnectionString"));

            // Instantiate the SQL connection using the SqlConnectionFactory
            var connection = container.GetService<IDbConnection>();

            // Notice that the connection string matches the SQL 2005 string given in the app file
            Console.WriteLine("The assigned connection string is: {0} ", connection.ConnectionString);
            return;
        }
    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The GNU Lesser General Public License (LGPLv3)


Written By
Software Developer (Senior) Readify
Australia Australia
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions