Click here to Skip to main content
15,885,899 members
Articles / Programming Languages / C# 4.0

Dynamically evaluated SQL LINQ queries

Rate me:
Please Sign up or sign in to vote.
4.95/5 (35 votes)
30 Nov 2013CPOL8 min read 192.1K   2.6K   116  
Extension methods to evaluate plain text SQL queries against IEnumerable collections.
using System;
using System.Text;
using System.Collections.Generic;
using System.Linq;
using Microsoft.VisualStudio.TestTools.UnitTesting;

namespace SqlLinq.UnitTests
{
    [TestClass]
    public class OperatorTests
    {
        public OperatorTests()
        {
            //
            // TODO: Add constructor logic here
            //
        }

        private TestContext testContextInstance;

        /// <summary>
        ///Gets or sets the test context which provides
        ///information about and functionality for the current test run.
        ///</summary>
        public TestContext TestContext
        {
            get
            {
                return testContextInstance;
            }
            set
            { 
                testContextInstance = value;
            }
        }

        [TestMethod]
        public void EmbeddedTrueInWhereClause()
        {
            IEnumerable<int> source = TestData.GetInts();
            var result = source.Query<int>("SELECT * FROM this WHERE value() > 3 AND TRUE");
            var answer = source.Where(i => i > 3);

            Assert.IsTrue(result.Any());
            Assert.IsTrue(answer.SequenceEqual(result));
        }

        [TestMethod]
        public void EmbeddedFalseInWhereClause()
        {
            IEnumerable<int> source = TestData.GetInts();
            var result = source.Query<int>("SELECT * FROM this WHERE value() > 3 AND FALSE");

            Assert.IsTrue(result.Any() == false);
        }

        [TestMethod]
        public void TrueInWhereClause()
        {
            IEnumerable<int> source = TestData.GetInts();
            var result = source.Query<int>("SELECT * FROM this WHERE TRUE");

            Assert.IsTrue(result.Any());
            Assert.IsTrue(source.SequenceEqual(result));
        }

        [TestMethod]
        public void FalseInWhereClause()
        {
            IEnumerable<int> source = TestData.GetInts();
            var result = source.Query<int>("SELECT * FROM this WHERE FALSE");

            Assert.IsTrue(result.Any() == false);
        }

        [TestMethod]
        public void NonZeroEvaluautesAsTrueInWhereClause()
        {
            IEnumerable<int> source = TestData.GetInts();
            var result = source.Query<int>("SELECT * FROM this WHERE 2 + 3");

            Assert.IsTrue(result.Any());
            Assert.IsTrue(source.SequenceEqual(result));
        }

        [TestMethod]
        public void ZeroEvaluautesAsFalseInWhereClause()
        {
            IEnumerable<int> source = TestData.GetInts();
            var result = source.Query<int>("SELECT * FROM this WHERE 2 - 2");

            Assert.IsTrue(result.Any() == false);
        }

        [TestMethod]
        public void WhereIntInValue()
        {
            IEnumerable<int> source = TestData.GetInts();
            var result = source.Query<int>("SELECT * FROM this WHERE value() IN(2, 3)");

            Assert.IsTrue(result.Any());
            foreach (int i in result)
                Assert.IsTrue(i == 2 || i == 3);
        }

        [TestMethod]
        public void WhereInValueDouble()
        {
            IEnumerable<double> source = TestData.GetDoubles();
            var result = source.Query<double>("SELECT * FROM this WHERE value() IN(2.1, 4.6)");
            var answer = from d in source
                         where (new List<double> { 2.1, 4.6 }).Contains(d)
                         select d;

            Assert.IsTrue(result.Any());
            Assert.IsTrue(answer.Any());

            Assert.IsTrue(answer.SequenceEqual(result));
        }

        [TestMethod]
        public void WhereIntNotInValue()
        {
            IEnumerable<int> source = TestData.GetInts();
            var result = source.Query<int>("SELECT * FROM this WHERE value() NOT IN(2, 3)");

            Assert.IsTrue(result.Any());
            foreach (int i in result)
                Assert.IsTrue(i != 2 && i != 3);
        }
    }
}

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