-
-
Notifications
You must be signed in to change notification settings - Fork 10
1. Getting Started
Vedran Bilopavlović edited this page Dec 21, 2020
·
6 revisions
> dotnet add package Norm.netThe package is lightweight and it doesn't have any additional dependencies.
using Norm;Connection object is object derived from System.Data.Common.DbConnection base class.
For example, that includes SqlConnection for SQL Server, NpgsqlConnection for PostgreSQL, SQLiteConnection for SQLite, MySqlConnection for MySQL, and so on. All known SQL database providers derive their connection objects from System.Data.Common.DbConnection base class.
Connection object can be created and disposed on spot or injected, the same way as you normally do, no changes required here.