LiteOrm在线文档

Installation and Environment Requirements

This document covers the runtime environment, database support, and installation methods for LiteOrm.

Environment Requirements

Supported Databases

For older database versions where default pagination syntax is incompatible, refer to Custom Paging and Custom SqlBuilder / Dialect Extension.

Install from NuGet

dotnet add package LiteOrm

Next Steps After Installation

  1. Prepare connection strings and data source configuration.
  2. Call RegisterLiteOrm() during host startup.
  3. Define entities, services, or DAOs.
  4. Use SearchAsync, InsertAsync, and other APIs to complete the first example.