Found 8 packages
A middleware used for log EFCore slow query.
A performance monitoring package for Entity Framework Core that tracks slow queries, execution times, and provides detailed analytics for query optimization.
A jQuery plugin to be used on touch devices such as iPad, iPhone, Android etc. Detects single and multiple finger swipes, pinches and falls back to mouse 'drags' on the desktop. Time and distance thresholds can be set to distinguish between swipe gesture and slow drag. Allows exclusion of child elements (interactive elements) as well allowing page scrolling or page zooming depending on configuration. - Detects swipes in 4 directions, "up", "down", "left" and "right" - Detects pinches "in" and "out" - Supports single finger or double finger touch events - Supports click events both on the touchSwipe object and its child objects - Definable threshold / maxTimeThreshold to determin when a gesture is actually a swipe - Events triggered for swipe "start","move","end" and "cancel" - End event can be triggered either on touch release, or as soon as threshold is met - Allows swiping and page scrolling - Disables user input elements (Button, form, text etc) from triggering swipes
EF Core SQL optimization helper that detects slow queries, N+1 problems, and missing indexes with detailed analysis and reporting.
IMEX.CORE: .NET 8/9/10 core library with unified Fluent API. Cache: L1/L2 Hybrid (199ns L1 hit, 40M ops/sec), CacheConfigurationBuilder (strategy, preset, ConfigureL1/ConfigureHybrid/ConfigureMonitoring, WithRateLimiting). SqlSugar: SqlSugarOptionsBuilder (NOLOCK, slow query, callbacks). AddImexCore: UseCache, UseSqlSugar(configure), UseRateLimiting(configure), UseMonitoring(configure), UseImexCore(app, configure). ISmartCache registered by default. Production-ready.
Enhances Entity Framework Core with functional programming patterns and DDD-friendly features. Includes base entity classes, soft delete support, audit trails, query filters, optimistic concurrency, PostgreSQL integration, query performance monitoring, and domain event handling. Perfect for building maintainable and scalable data access layers in modern .NET applications.
Drop-in Observability & Monitoring Kit for .NET 10 applications. Features include automated distributed tracing (Correlation ID), slow SQL query detection (EF Core Interceptor), and structured logging (Serilog integration).
WALnutDB is a simple, safe embedded database for .NET 8+. It’s built for devices with little RAM and slow flash (SD cards, eMMC). It uses Write-Ahead Logging (WAL) for power-loss durability, compacts data into sorted segment files (SST), and provides secondary indexes and time-series scans. Fully managed (no native deps), cross-platform, and async by default. Highlights Power-loss safety: WAL with per-frame CRC, truncation-tolerant replay. Async I/O everywhere: designed for slow media and small RAM. Document tables: pluggable serialization (e.g. System.Text.Json); GUIDs/strings/byte[] keys. Secondary indexes: range scans over string/bytes/ints/floats/decimal (with scale). Time-series mode: UTC-ordered keys, efficient range scans by time. Checkpoint & SST: flush memtables to sorted segments, fast reads, WAL truncation. Cross-platform: Linux/Windows/macOS; file-per-table for fault isolation. No native dependencies: pure C# for easy deployment on IoT. Roadmap: online compaction/defrag stats & swap, unique index enforcement, optional encryption-at-rest, richer query push-downs.