Documentation Hub

Everything You Need to Build

Comprehensive documentation, guides, and examples to help you build enterprise-grade applications with eQuantic libraries.

Getting Started
Quick start guides to get you up and running with eQuantic libraries
Core Libraries
Deep dive into our core libraries and their capabilities
API Reference
Complete API documentation with examples and parameter details
Tutorials & Guides
Step-by-step tutorials for common scenarios and best practices
Examples
Real-world examples and sample applications
Community
Connect with other developers and contribute to the ecosystem
Quick Start Example
Get started with eQuantic Core in minutes

1. Install the package

dotnet add package eQuantic.Core

2. Configure services

public void ConfigureServices(IServiceCollection services)
{
    services.AddEQuantic()
        .AddDataAccess()
        .AddRepositories();
}

3. Use in your application

public class ProductService : IProductService
{
    private readonly IRepository<Product> _repository;
    
    public ProductService(IRepository<Product> repository)
    {
        _repository = repository;
    }
}

Need Help?

Can't find what you're looking for? Our community and support channels are here to help.

Documentation - eQuantic Tech