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
- Host: GitHub
- URL: https://github.com/dkackman/sqllinq
- Owner: dkackman
- License: other
- Created: 2013-08-04T15:10:38.000Z (almost 13 years ago)
- Default Branch: master
- Last Pushed: 2015-04-05T16:23:07.000Z (about 11 years ago)
- Last Synced: 2025-04-10T07:02:17.773Z (about 1 year ago)
- Language: C#
- Homepage:
- Size: 1000 KB
- Stars: 26
- Watchers: 7
- Forks: 9
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: License.md
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.