Deblazer

A small ORM Framework developed around 2010


Keywords
Deblazer, ORM, Digitec, Galaxus, Sql
License
Other
Install
Install-Package Deblazer -Version 2.0.0

Documentation

Deblazer ORM

Build Status Build Status

Deblazer is the C# ORM written and used by Digitec Galaxus it has query language similiar to LINQ.

Getting Started

Install the latest package from Nuget

Usuage

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();

Development

Deblazer is written in C# and targets the .NET 4.6.1 Framework