Click here to Skip to main content
15,885,098 members
Articles / Programming Languages / SQL

SqlLinq: Taking LINQ to SQL in the Other Direction

Rate me:
Please Sign up or sign in to vote.
4.96/5 (50 votes)
12 Nov 2009CPOL13 min read 103.5K   1.1K   145  
Parsing SQL statements to create LINQ Expressions.
using System;

namespace Kackman.Framework
{
    /// <summary>
    /// Summary description for IPropertyBag.
    /// </summary>
    public interface IPropertyBag
    {
        void Clear();

        void CopyTo(IPropertyBag propertyBag);

        bool HasSetting(string sectionName, string name);

        void SetSetting(string sectionName, string name, bool data);
        void SetSetting(string sectionName, string name, int data);
        void SetSetting(string sectionName, string name, string data);
        void SetSetting(string sectionName, string name, double data);
        void SetSetting(string sectionName, string name, object data);
        void SetSetting(string sectionName, string name, Enum data);

        int GetSetting(string sectionName, string name, int defaultValue);
        bool GetSetting(string sectionName, string name, bool defaultValue);
        string GetSetting(string sectionName, string name, string defaultValue);
        double GetSetting(string sectionName, string name, double defaultValue);
        object GetSetting(string sectionName, string name, object defaultValue);
        Enum GetSetting(string sectionName, string name, Enum defaultValue);

        void Remove(string sectionName);
        void Remove(string sectionName, string name);
    }
}

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 Code Project Open License (CPOL)


Written By
Team Leader Starkey Laboratories
United States United States
The first computer program I ever wrote was in BASIC on a TRS-80 Model I and it looked something like:
10 PRINT "Don is cool"
20 GOTO 10

It only went downhill from there.

Hey look, I've got a blog

Comments and Discussions