Imports & Depended References - nemiro-net/nemiro.data.dll GitHub Wiki
To start working with the Nemiro.Data class library, you may need to import the following namespaces.
C#
using Nemiro.Data;
using Nemiro.Data.Sql;
using Nemiro.Data.Caching;
Visual Basic .NET
Imports Nemiro.Data
Imports Nemiro.Data.Sql
Imports Nemiro.Data.Caching
It's not obligatory, but it will be more convenient.
The Nemiro.Data namespace contains common classes, enumerations and attributes that are needed for the library.
The Nemiro.Data.Sql namespace contains classes for working with SQL Server databases. Mainly the SqlClient class and the BaseObject class for ORM.
The Nemiro.Data.Caching namespace contains classes that implement data caching and provide access to the cache.
To use caching, you may need to add an System.Runtime.Caching reference.
Select the Add Reference menu item.
Open Assemblies/Framework tab, and select System.Runtime.Caching.
Enjoy!