Skip to content

Repositories

anton-martyniuk edited this page Feb 13, 2023 · 6 revisions

Modern generic repository supports both SQL and No SQL databases.
The following repositories for SQL databases ORMS are available:

The following repositories for No SQL databases are available:

All mentioned above repositories implement IModernRepository<TEntity, TId> interface, which in order inherits from 2 interfaces: IModernQueryRepository<TEntity, TId> and IModernCrudRepository<TEntity, TId>.

IModernQueryRepository provides methods to query data from the database. IModernCrudRepository provides methods to insert, update, delete data in the database.

Clone this wiki locally