Deblazer is the C# ORM written and used by Digitec Galaxus it has query language similiar to LINQ.
Install the latest package from Nuget
Use the artifacts tooling to generate the necessary artifacts classes.
var db = new Db("My Connection String");
var top10people = db.Application_Peoples()
.TakeDb(10)
.ToList();Deblazer is written in C# and targets the .NET 4.6.1 Framework