An open API service indexing awesome lists of open source software.

https://github.com/dkackman/sqllinq

Dynamic SQL queries of .NET IEnumerables
https://github.com/dkackman/sqllinq

Last synced: about 1 year ago
JSON representation

Dynamic SQL queries of .NET IEnumerables

Awesome Lists containing this project

README

          

SqlLinq
=======

Dynamic .NET SQL queries

[NuGet package](https://www.nuget.org/packages/SqlLinq/)

This project started as an experiment that allowed me to write dynamic SQL-like inline queries so I could explore the nature of my collection of MP3 files. This original project is on CodeProject: http://www.codeproject.com/Articles/28163/SqlLinq-Taking-LINQ-to-SQL-in-the-Other-Direction.

That original code was refined to being a basic implementation of SQL select statements. That code was also published and described on CodeProject: http://www.codeproject.com/Articles/43678/Dynamically-evaluated-SQL-LINQ-queries

It isn't a replacement for Linq but it can come in handy when the data model being queried or the exact structure of one's query results aren't known at compile time.