{"id":31028303,"url":"https://github.com/zeidlab/easypersistence","last_synced_at":"2026-01-20T17:55:09.243Z","repository":{"id":307464147,"uuid":"976602634","full_name":"ZeidLab/EasyPersistence","owner":"ZeidLab","description":null,"archived":false,"fork":false,"pushed_at":"2025-08-15T08:20:38.000Z","size":340,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-08-15T10:14:45.499Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ZeidLab.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.txt","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-05-02T12:06:08.000Z","updated_at":"2025-08-15T08:20:41.000Z","dependencies_parsed_at":"2025-07-31T13:11:38.126Z","dependency_job_id":"e82980cb-75d2-4b9a-ab61-a0c1a843bbc0","html_url":"https://github.com/ZeidLab/EasyPersistence","commit_stats":null,"previous_names":["zeidlab/easypersistence"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/ZeidLab/EasyPersistence","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ZeidLab%2FEasyPersistence","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ZeidLab%2FEasyPersistence/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ZeidLab%2FEasyPersistence/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ZeidLab%2FEasyPersistence/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ZeidLab","download_url":"https://codeload.github.com/ZeidLab/EasyPersistence/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ZeidLab%2FEasyPersistence/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":275020170,"owners_count":25391653,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-09-13T02:00:10.085Z","response_time":70,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-09-13T20:13:21.023Z","updated_at":"2026-01-20T17:55:09.187Z","avatar_url":"https://github.com/ZeidLab.png","language":"C#","readme":"# ZeidLab.ToolBox.EasyPersistence\n\n## 🤔 What is `EasyPersistence` Library?\n\n**EasyPersistence** is a high-performance, modular extension for Entity Framework Core, providing advanced repository and unit of work patterns, fuzzy search with 3-gram algorithm, and SQL CLR integration. Designed for scalable, maintainable, and testable .NET data layers, it follows modern C# and Microsoft coding standards, with comprehensive XML documentation and NuGet-ready modularity.\n\n### 🎁 Features\n\n- **Repository \u0026 Unit of Work Patterns:** Clean abstractions for data access\n- **Fuzzy Search:** Advanced search capabilities for EF Core with 3-gram algorithm\n- **SQL CLR Integration:** Efficient search via SQL CLR functions\n- **High Performance:** Optimized for critical paths, minimal overhead\n- **Modular Design:** Use only the components you need\n\n### 🧪 Example Project\n\nExplore a complete, working sample demonstrating repository/unit-of-work, fuzzy search, and configuration:\n- GitHub: https://github.com/ZeidLab/EasyPersistenceEFCoreExample\n\n[^ Back To Top](#-what-is-EasyPersistence-library)\n\n## 📦 Installation\n\nTo use **EasyPersistence.EFCore** in your project, you can install it via NuGet:\n\n```bash\ndotnet add package ZeidLab.ToolBox.EasyPersistence.EFCore\n```\n\nFor more information, please visit [EasyPersistence Package on NuGet](https://www.nuget.org/packages/ZeidLab.ToolBox.EasyPersistence.EFcore).\n\n[^ Back To Top](#-what-is-EasyPersistence-library)\n\n### Core Components\n\n| Component                           | Description                                                    |\n|-------------------------------------|----------------------------------------------------------------|\n| `IAggregateRoot`                    | Marker for aggregate root entities in the domain model         |\n| `IDomainEvent`                      | Marker for domain events in DDD                                |\n| `IRepositoryBase`                   | Generic repository interface for entity data access            |\n| `IUnitOfWork`                       | Unit of work contract for managing transactions and saving     |\n| `EntityBase\u003cTId\u003e`                   | Base class for entities with typed ID and value-based equality |\n| `PagedResult\u003cT\u003e`                    | Represents a paged result set with items and total count       |\n| `PropertyScore`                     | Represents the score of a property in fuzzy search/comparison  |\n| `ScoredRecord\u003cTEntity\u003e`             | Entity with fuzzy search score and per-property scores         |\n| `UnitOfWorkBase\u003cTContext\u003e`          | Base implementation of IUnitOfWork for EF Core DbContext       |\n| `RepositoryBase\u003cTEntity,TEntityId\u003e` | Base implementation of IRepositoryBase using EF Core           |\n\n[^ Back To Top](#-what-is-EasyPersistence-library)\n\n## 📝 ChangeLogs\n\nWith each release, we add new features and fix bugs. You can find the full changelog at [EasyPersistence Releases](https://github.com/ZeidLab/EasyPersistence/releases).\n\n[^ Back To Top](#-what-is-EasyPersistence-library)\n\n## 📖 Usage and Configuration\n\nFor more information and detailed usage instructions, please refer to the [EasyPersistence Documentation](https://github.com/ZeidLab/EasyPersistence/wiki).\n\n[^ Back To Top](#-what-is-EasyPersistence-library)\n\n\n## ⭐️ Star and Follow\n\nStar this repository and follow me on GitHub to stay informed about new releases and updates. Your support fuels this\nproject's growth!\n\n[^ Back To Top](#-what-is-EasyPersistence-library)\n\n## 💡 Love My Work? Support the Journey!\n\nIf my content adds value to your projects, consider supporting me via crypto.\n\n- **Bitcoin:** bc1qlfljm9mysdtu064z5cf4yq4ddxgdfztgvghw3w\n- **USDT(TRC20):** TJFME9tAnwdnhmqGHDDG5yCs617kyQDV39\n\nThank you for being part of this community—let’s build smarter, together\n\n[^ Back To Top](#-what-is-EasyPersistence-library)\n\n## 🤝 Contributions\n\nContributions are welcome! Please feel free to submit issues, feature requests, or pull requests.\n\n1. Fork the repository\n2. Create a new branch for your feature or bugfix\n3. Commit your changes following the project guidelines\n4. Push your branch and submit a pull request\n\n[^ Back To Top](#-what-is-EasyPersistence-library)\n\n## License\n\nThis project is licensed under the MIT License. See the [LICENSE](./LICENSE.txt) file for details.\n\n[^ Back To Top](#-what-is-EasyPersistence-library)\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzeidlab%2Feasypersistence","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fzeidlab%2Feasypersistence","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzeidlab%2Feasypersistence/lists"}