Skip to content

Quick start

sdrapkin edited this page Jan 5, 2017 · 15 revisions

Install TinyORM From NuGet

Install-Package TinyORM

Write some code

using SecurityDriven.TinyORM; // add "using" statement
// create DbContext instance out of some connection string
var db = DbContext.CreateDbContext(connectionString:
  "Data Source=.\\SQL2012;Initial Catalog=tempdb;Integrated Security=True;Pooling=true;Max Pool Size=3000;");

[..unfinished..]

Clone this wiki locally