{"id":22880961,"url":"https://github.com/vit-orm/vitorm","last_synced_at":"2026-02-25T23:06:12.945Z","repository":{"id":244069216,"uuid":"813674661","full_name":"Vit-Orm/Vitorm","owner":"Vit-Orm","description":"a lightweight yet comprehensive ORM for MySql, SqlServer, Sqlite  etc","archived":false,"fork":false,"pushed_at":"2025-01-12T14:12:08.000Z","size":745,"stargazers_count":6,"open_issues_count":0,"forks_count":3,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-12-26T15:25:19.287Z","etag":null,"topics":["clickhouse","database","elasticsearch","mysql","orm","sqlite","sqlserver","vitorm"],"latest_commit_sha":null,"homepage":"","language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Vit-Orm.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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":"2024-06-11T14:23:25.000Z","updated_at":"2025-01-12T14:08:08.000Z","dependencies_parsed_at":"2024-07-29T17:03:06.130Z","dependency_job_id":"6750bf97-6f9f-4509-8da6-fcbb25c00102","html_url":"https://github.com/Vit-Orm/Vitorm","commit_stats":null,"previous_names":["vitormlib/vitorm","vit-orm/vitorm"],"tags_count":26,"template":false,"template_full_name":null,"purl":"pkg:github/Vit-Orm/Vitorm","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Vit-Orm%2FVitorm","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Vit-Orm%2FVitorm/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Vit-Orm%2FVitorm/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Vit-Orm%2FVitorm/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Vit-Orm","download_url":"https://codeload.github.com/Vit-Orm/Vitorm/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Vit-Orm%2FVitorm/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29844845,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-25T22:37:40.667Z","status":"ssl_error","status_checked_at":"2026-02-25T22:37:25.960Z","response_time":61,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["clickhouse","database","elasticsearch","mysql","orm","sqlite","sqlserver","vitorm"],"created_at":"2024-12-13T17:28:48.578Z","updated_at":"2026-02-25T23:06:12.928Z","avatar_url":"https://github.com/Vit-Orm.png","language":"C#","readme":"﻿\n# Vitorm\nVitorm is a lightweight yet comprehensive ORM that strikes the perfect balance between simplicity and functionality.    \nSimilar to Dapper in its lightweight design, Vitorm offers an easy-to-use, efficient interface for data access.    \nHowever, it doesn't stop there; Vitorm goes beyond basic ORM capabilities to provide a rich feature set akin to Entity Framework.    \nThis means you get the best of both worlds: the performance and simplicity of Dapper with the robust features and flexibility of Entity Framework, making Vitorm an ideal choice for developers seeking a powerful yet streamlined ORM solution.\n\u003e source address: [https://github.com/Vit-Orm/Vitorm](https://github.com/Vit-Orm/Vitorm \"https://github.com/Vit-Orm/Vitorm\")    \n\n![](https://img.shields.io/github/license/Vit-Orm/Vitorm.svg)  \n![](https://img.shields.io/github/repo-size/Vit-Orm/Vitorm.svg)  ![](https://img.shields.io/github/last-commit/Vit-Orm/Vitorm.svg)  \n \n\n| Build | NuGet |\n| -------- | -------- |\n|![](https://github.com/Vit-Orm/Vitorm/workflows/ki_devops3_build/badge.svg) | [![](https://img.shields.io/nuget/v/Vitorm.svg)](https://www.nuget.org/packages/Vitorm) ![](https://img.shields.io/nuget/dt/Vitorm.svg) |\n\n\n\n\n\n# Vitorm Documentation\nThis guide will walk you through the steps to set up and use Vitorm with SQLite.\n\nsupported features:\n\n| feature    |  method   |  remarks   |     |\n| --- | --- | --- | --- |\n|  create table   |  TryCreateTable   |     |     |\n|  drop table   |  TryDropTable   |     |     |\n|  truncate table   |  Truncate   |     |     |\n| --- | --- | --- | --- |\n|  create records   |  Add AddRange   |     |     |\n|  retrieve  records |  Query Get   |     |     |\n|  update records   |  Update UpdateRange ExecuteUpdate  |     |     |\n|  delete records   |  Delete DeleteRange DeleteByKey DeleteByKeys ExecuteDelete   |     |     |\n| --- | --- | --- | --- |\n|  change table   |  ChangeTable    |  change mapping table from database   |   |\n|  change database  |  ChangeDatabase   | change database to be connected  |   |\n| --- | --- | --- | --- |\n|  collection total count   |  TotalCount    |  Collection Total Count without Take and Skip   |   |\n|  collection total count and list  |  ToListAndTotalCount   | query List and TotalCount in one request  |   |\n|     |     |   |   |\n\n\n## Installation\nBefore using Vitorm, install the necessary package:    \n``` bash\ndotnet add package Vitorm.Sqlite\n```\n\n## Minimum viable demo\n\u003e code address: [Program_Min.cs](https://github.com/Vit-Orm/Vitorm/tree/master/test/Vitorm.Sqlite.Console/Program_Min.cs)    \n``` csharp\nusing Vitorm;\nnamespace App\n{\n    public class Program_Min\n    {\n        static void Main2(string[] args)\n        {\n            // #1 Init\n            using var dbContext = new Vitorm.Sql.SqlDbContext();\n            dbContext.UseSqlite(\"data source=sqlite.db\");\n\n            // #2 Query\n            var user = dbContext.Get\u003cUser\u003e(1);\n            var users = dbContext.Query\u003cUser\u003e().Where(u =\u003e u.name.Contains(\"li\")).ToList();\n        }\n\n        // Entity Definition\n        [System.ComponentModel.DataAnnotations.Schema.Table(\"User\")]\n        public class User\n        {\n            [System.ComponentModel.DataAnnotations.Key]\n            public int id { get; set; }\n            public string name { get; set; }\n            public DateTime? birth { get; set; }\n            public int? fatherId { get; set; }\n        }\n    }\n}\n```\n\n\n## Full Example\n\u003e This example provides a comprehensive guide to utilizing Vitorm for basic and advanced database operations while maintaining lightweight performance.    \n\u003e code address: [Program.cs](https://github.com/Vit-Orm/Vitorm/tree/master/test/Vitorm.Sqlite.Console/Program.cs)    \n``` csharp\nusing Vitorm;\n\nnamespace App\n{\n    public class Program\n    {\n        static void Main(string[] args)\n        {\n            // #1 Configures Vitorm\n            using var dbContext = new Vitorm.Sql.SqlDbContext();\n            dbContext.UseSqlite(\"data source=sqlite.db\");\n\n            // #2 Create Table\n            dbContext.TryDropTable\u003cUser\u003e();\n            dbContext.TryCreateTable\u003cUser\u003e();\n\n            // #3 Insert Records\n            dbContext.Add(new User { id = 1, name = \"lith\" });\n            dbContext.AddRange(new[] {\n                new User { id = 2, name = \"lith\", fatherId = 1 },\n                new User { id = 3, name = \"lith\", fatherId = 1 }\n            });\n\n            // #4 Query Records\n            {\n                var user = dbContext.Get\u003cUser\u003e(1);\n                var users = dbContext.Query\u003cUser\u003e().Where(u =\u003e u.name.Contains(\"li\")).ToList();\n                var sql = dbContext.Query\u003cUser\u003e().Where(u =\u003e u.name.Contains(\"li\")).ToExecuteString();\n            }\n\n            // #5 Update Records\n            dbContext.Update(new User { id = 1, name = \"lith1\" });\n            dbContext.UpdateRange(new[] {\n                new User { id = 2, name = \"lith2\", fatherId = 1 },\n                new User { id = 3, name = \"lith3\", fatherId = 2 }\n            });\n            dbContext.Query\u003cUser\u003e().Where(u =\u003e u.name.Contains(\"li\"))\n                .ExecuteUpdate(u =\u003e new User { name = \"Lith\" + u.id });\n\n            // #6 Delete Records\n            dbContext.Delete\u003cUser\u003e(new User { id = 1, name = \"lith1\" });\n            dbContext.DeleteRange(new[] {\n                new User { id = 2, name = \"lith2\", fatherId = 1 },\n                new User { id = 3, name = \"lith3\", fatherId = 2 }\n            });\n            dbContext.DeleteByKey\u003cUser\u003e(1);\n            dbContext.DeleteByKeys\u003cUser, int\u003e(new[] { 1, 2 });\n            dbContext.Query\u003cUser\u003e().Where(u =\u003e u.name.Contains(\"li\"))\n                .ExecuteDelete();\n            dbContext.Truncate\u003cUser\u003e();\n\n            // #7 Join Queries\n            {\n                var query =\n                        from user in dbContext.Query\u003cUser\u003e()\n                        from father in dbContext.Query\u003cUser\u003e().Where(father =\u003e user.fatherId == father.id).DefaultIfEmpty()\n                        where father != null\n                        orderby user.id\n                        select new { user, father };\n\n                var sql = query.ToExecuteString();\n                var users = query.ToList();\n            }\n\n            // #8 Transactions\n            {\n                using var tran1 = dbContext.BeginTransaction();\n                dbContext.Update(new User { id = 4, name = \"u4001\" });\n\n                using (var tran2 = dbContext.BeginTransaction())\n                {\n                    dbContext.Update(new User { id = 4, name = \"u4002\" });\n                    // will rollback\n                }\n\n                using (var tran2 = dbContext.BeginTransaction())\n                {\n                    dbContext.Update(new User { id = 4, name = \"u4002\" });\n                    tran2.Rollback();\n                }\n\n                using (var tran2 = dbContext.BeginTransaction())\n                {\n                    dbContext.Update(new User { id = 4, name = \"u4003\" });\n                    tran2.Commit();\n                }\n\n                tran1.Commit();\n            }\n\n            // #9 Database Functions\n            {\n                // select * from User where IIF(t0.fatherId is not null, true, false);\n                var query = dbContext.Query\u003cUser\u003e().Where(u =\u003e DbFunction.Call\u003cbool\u003e(\"IIF\", u.fatherId != null, true, false));\n                var sql = query.ToExecuteString();\n                var userList = query.ToList();\n            }\n        }\n\n        // Entity Definition\n        [System.ComponentModel.DataAnnotations.Schema.Table(\"User\")]\n        public class User\n        {\n            [System.ComponentModel.DataAnnotations.Key]\n            public int id { get; set; }\n            public string name { get; set; }\n            public DateTime? birth { get; set; }\n            public int? fatherId { get; set; }\n        }\n    }\n}\n```\n\n## Explanation   \n1. **Setup**: Initializes the database and configures Vitorm.\n2. **Create Table**: Drops and recreates the `User` table.\n3. **Insert Records**: Adds single and multiple user records.\n4. **Query Records**: Retrieves user records using various querying methods.\n5. **Update Records**: Updates single and multiple user records.\n6. **Delete Records**: Deletes single and multiple user records.\n7. **Join Queries**: Performs a join operation between user and father records.\n8. **Transactions**: Demonstrates nested transactions and rollback/commit operations.\n9. **Database Functions**: Uses custom database functions in queries.\n\n\n\n# Vitorm.Data Documentation    \nVitorm.Data is a static class that allows you to use Vitorm without explicitly creating or disposing of a DbContext.    \n \n## Installation    \nBefore using Vitorm.Data, install the necessary package:    \n``` bash\ndotnet add package Vitorm.Data\ndotnet add package Vitorm.Sqlite\n```\n\n## Config settings\n``` json\n// appsettings.json\n{\n  \"Vitorm\": {\n    \"Data\": [\n      {\n        \"provider\": \"Sqlite\",\n        \"namespace\": \"App\",\n        \"connectionString\": \"data source=sqlite.db;\"\n      }\n    ]\n  }\n}\n```\n\n## Minimum viable demo\n\u003e After configuring the `appsettings.json` file, you can directly perform queries without any additional configuration or initialization, `Vitorm.Data` is that easy to use.    \n\u003e code address: [Program_Min.cs](https://github.com/Vit-Orm/Vitorm/tree/master/test/Vitorm.Data.Console/Program_Min.cs)    \n``` csharp\nusing Vitorm;\nnamespace App\n{\n    public class Program_Min\n    {\n        static void Main2(string[] args)\n        {\n            //  Query Records\n            var user = Data.Get\u003cUser\u003e(1);\n            var users = Data.Query\u003cUser\u003e().Where(u =\u003e u.name.Contains(\"li\")).ToList();\n        }\n\n        // Entity Definition\n        [System.ComponentModel.DataAnnotations.Schema.Table(\"User\")]\n        public class User\n        {\n            [System.ComponentModel.DataAnnotations.Key]\n            public int id { get; set; }\n            public string name { get; set; }\n            public DateTime? birth { get; set; }\n            public int? fatherId { get; set; }\n        }\n    }\n}\n\n```\n\n## Full Example    \n\u003e code address: [Program.cs](https://github.com/Vit-Orm/Vitorm/tree/master/test/Vitorm.Data.Console/Program.cs)    \n``` csharp\nusing Vitorm;\n\nnamespace App\n{\n    public class Program\n    {\n        static void Main(string[] args)\n        {\n            // #1 No need to init Vitorm.Data\n\n            // #2 Create Table\n            Data.TryDropTable\u003cUser\u003e();\n            Data.TryCreateTable\u003cUser\u003e();\n\n            // #3 Insert Records\n            Data.Add(new User { id = 1, name = \"lith\" });\n            Data.AddRange(new[] {\n                new User { id = 2, name = \"lith\", fatherId = 1 },\n                new User { id = 3, name = \"lith\", fatherId = 1 }\n            });\n\n            // #4 Query Records\n            {\n                var user = Data.Get\u003cUser\u003e(1);\n                var users = Data.Query\u003cUser\u003e().Where(u =\u003e u.name.Contains(\"li\")).ToList();\n                var sql = Data.Query\u003cUser\u003e().Where(u =\u003e u.name.Contains(\"li\")).ToExecuteString();\n            }\n\n            // #5 Update Records\n            Data.Update(new User { id = 1, name = \"lith1\" });\n            Data.UpdateRange(new[] {\n                new User { id = 2, name = \"lith2\", fatherId = 1 },\n                new User { id = 3, name = \"lith3\", fatherId = 2 }\n            });\n            Data.Query\u003cUser\u003e().Where(u =\u003e u.name.Contains(\"li\"))\n                .ExecuteUpdate(u =\u003e new User { name = \"Lith\" + u.id });\n\n            // #6 Delete Records\n            Data.Delete\u003cUser\u003e(new User { id = 1, name = \"lith1\" });\n            Data.DeleteRange(new[] {\n                new User { id = 2, name = \"lith2\", fatherId = 1 },\n                new User { id = 3, name = \"lith3\", fatherId = 2 }\n            });\n            Data.DeleteByKey\u003cUser\u003e(1);\n            Data.DeleteByKeys\u003cUser, int\u003e(new[] { 1, 2 });\n            Data.Query\u003cUser\u003e().Where(u =\u003e u.name.Contains(\"li\"))\n                .ExecuteDelete();\n            Data.Truncate\u003cUser\u003e();\n\n            // #7 Join Queries\n            {\n                var query =\n                        from user in Data.Query\u003cUser\u003e()\n                        from father in Data.Query\u003cUser\u003e().Where(father =\u003e user.fatherId == father.id).DefaultIfEmpty()\n                        where father != null\n                        orderby user.id\n                        select new { user, father };\n\n                var sql = query.ToExecuteString();\n                var users = query.ToList();\n            }\n\n            // #8 Transactions\n            {\n                using var dbContext = Data.DataProvider\u003cUser\u003e().CreateSqlDbContext();\n                using var tran1 = dbContext.BeginTransaction();\n\n                dbContext.Update(new User { id = 4, name = \"u4001\" });\n\n                using (var tran2 = dbContext.BeginTransaction())\n                {\n                    dbContext.Update(new User { id = 4, name = \"u4002\" });\n                    // will rollback\n                }\n\n                using (var tran2 = dbContext.BeginTransaction())\n                {\n                    dbContext.Update(new User { id = 4, name = \"u4002\" });\n                    tran2.Rollback();\n                }\n\n                using (var tran2 = dbContext.BeginTransaction())\n                {\n                    dbContext.Update(new User { id = 4, name = \"u4003\" });\n                    tran2.Commit();\n                }\n\n                tran1.Commit();\n            }\n\n            // #9 Database Functions\n            {\n                // select * from User where IIF(t0.fatherId is not null, true, false);\n                var query = Data.Query\u003cUser\u003e().Where(u =\u003e DbFunction.Call\u003cbool\u003e(\"IIF\", u.fatherId != null, true, false));\n                var sql = query.ToExecuteString();\n                var userList = query.ToList();\n            }\n        }\n\n        // Entity Definition\n        [System.ComponentModel.DataAnnotations.Schema.Table(\"User\")]\n        public class User\n        {\n            [System.ComponentModel.DataAnnotations.Key]\n            public int id { get; set; }\n            public string name { get; set; }\n            public DateTime? birth { get; set; }\n            public int? fatherId { get; set; }\n        }\n    }\n}\n```\n\n\n# Comparison of performance with other ORMs\n\u003e Through benchmarks, there may be slight variations depending on the database source, for reference only.\n\u003e code address: [Vitorm.Data.Benchmark](https://github.com/Vit-Orm/Vitorm/tree/master/test/Vitorm.Data.Benchmark)    \n\n## SqlServer \n| Method | queryJoin | take | runner                 | Mean         | Error     | StdDev    |\n|------- |---------- |----- |----------------------- |-------------:|----------:|----------:|\n| Run    | False     | 1    | Runner_EntityFramework |     5.380 ms | 0.0449 ms | 0.0398 ms |\n| Run    | False     | 1    | Runner_SqlSuger        |     4.929 ms | 0.0588 ms | 0.0550 ms |\n| Run    | False     | 1    | Runner_Vitorm          |     4.925 ms | 0.0506 ms | 0.0474 ms |\n| Run    | False     | 1000 | Runner_EntityFramework |     6.009 ms | 0.0963 ms | 0.0853 ms |\n| Run    | False     | 1000 | Runner_SqlSuger        |     5.616 ms | 0.1114 ms | 0.1488 ms |\n| Run    | False     | 1000 | Runner_Vitorm          |     5.539 ms | 0.1060 ms | 0.1262 ms |\n| Run    | True      | 1    | Runner_EntityFramework |     5.453 ms | 0.0571 ms | 0.0534 ms |\n| Run    | True      | 1    | Runner_SqlSuger        |     5.601 ms | 0.0477 ms | 0.0423 ms |\n| Run    | True      | 1    | Runner_Vitorm          |     5.337 ms | 0.0596 ms | 0.0528 ms |\n| Run    | True      | 1000 | Runner_EntityFramework | 1,706.222 ms | 4.4435 ms | 3.9391 ms |\n| Run    | True      | 1000 | Runner_SqlSuger        |   125.150 ms | 2.3678 ms | 2.3255 ms |\n| Run    | True      | 1000 | Runner_Vitorm          |    21.027 ms | 0.3564 ms | 0.3334 ms |\n\n## MySql \n| Method | queryJoin | take | runner                 | Mean         | Error       | StdDev      |\n|------- |---------- |----- |----------------------- |-------------:|------------:|------------:|\n| Run    | False     | 1    | Runner_EntityFramework |   1,231.1 μs |    47.43 μs |   139.84 μs |\n| Run    | False     | 1    | Runner_SqlSuger        |     873.7 μs |    22.33 μs |    65.49 μs |\n| Run    | False     | 1    | Runner_Vitorm          |     636.7 μs |    21.15 μs |    62.37 μs |\n| Run    | False     | 1000 | Runner_EntityFramework |   4,764.8 μs |    56.52 μs |    52.87 μs |\n| Run    | False     | 1000 | Runner_SqlSuger        |   1,906.4 μs |    33.21 μs |    42.00 μs |\n| Run    | False     | 1000 | Runner_Vitorm          |   2,159.5 μs |    43.16 μs |    56.12 μs |\n| Run    | True      | 1    | Runner_EntityFramework |   1,775.0 μs |    35.01 μs |    80.45 μs |\n| Run    | True      | 1    | Runner_SqlSuger        |   1,747.5 μs |    34.05 μs |    44.27 μs |\n| Run    | True      | 1    | Runner_Vitorm          |   1,292.5 μs |    25.72 μs |    41.54 μs |\n| Run    | True      | 1000 | Runner_EntityFramework |   6,784.4 μs |   102.05 μs |    95.45 μs |\n| Run    | True      | 1000 | Runner_SqlSuger        | 113,634.4 μs | 1,128.58 μs | 1,055.67 μs |\n| Run    | True      | 1000 | Runner_Vitorm          |   3,175.2 μs |    62.02 μs |    88.95 μs |\n\n## Sqlite\n| Method | queryJoin | take | runner                 | Mean          | Error      | StdDev     |\n|------- |---------- |----- |----------------------- |--------------:|-----------:|-----------:|\n| Run    | False     | 1    | Runner_EntityFramework |     115.32 μs |   0.831 μs |   0.778 μs |\n| Run    | False     | 1    | Runner_SqlSuger        |      81.66 μs |   0.747 μs |   0.699 μs |\n| Run    | False     | 1    | Runner_Vitorm          |      45.64 μs |   0.350 μs |   0.328 μs |\n| Run    | False     | 1000 | Runner_EntityFramework |   1,386.81 μs |  13.684 μs |  12.800 μs |\n| Run    | False     | 1000 | Runner_SqlSuger        |     674.82 μs |   4.938 μs |   4.619 μs |\n| Run    | False     | 1000 | Runner_Vitorm          |     769.88 μs |   6.020 μs |   5.631 μs |\n| Run    | True      | 1    | Runner_EntityFramework |     220.27 μs |   1.916 μs |   1.793 μs |\n| Run    | True      | 1    | Runner_SqlSuger        |     484.52 μs |   6.746 μs |   5.980 μs |\n| Run    | True      | 1    | Runner_Vitorm          |     167.89 μs |   1.352 μs |   1.264 μs |\n| Run    | True      | 1000 | Runner_EntityFramework |   1,962.25 μs |  10.031 μs |   8.377 μs |\n| Run    | True      | 1000 | Runner_SqlSuger        | 103,179.50 μs | 534.265 μs | 446.135 μs |\n| Run    | True      | 1000 | Runner_Vitorm          |   1,684.39 μs |  21.895 μs |  18.283 μs |\n\n\n\n\n# Examples  \n- [CRUD](test/Vitorm.Sqlite.MsTest/CommonTest/CRUD_Test.cs)    \n- [ExecuteDelete](test/Vitorm.Sqlite.MsTest/CommonTest/Orm_Extensions_ExecuteDelete_Test.cs)    \n- [ExecuteUpdate](test/Vitorm.Sqlite.MsTest/CommonTest/Orm_Extensions_ExecuteUpdate_Test.cs)    \n- [ToExecuteString](test/Vitorm.Sqlite.MsTest/CommonTest/Orm_Extensions_ToExecuteString_Test.cs)    \n    \n- [Query_Method_Test](test/Vitorm.Sqlite.MsTest/CommonTest/Query_Method_Test.cs)  \n- [Query_Distinct_Test](test/Vitorm.Sqlite.MsTest/CommonTest/Query_Distinct_Test.cs)  \n    \n- [Property_String_Test](test/Vitorm.Sqlite.MsTest/CommonTest/Property_String_Test.cs)  \n- [Property_String_Like_Test](test/Vitorm.Sqlite.MsTest/CommonTest/Property_String_Like_Test.cs)  \n- [Property_String_Calculate_Test](test/Vitorm.Sqlite.MsTest/CommonTest/Property_String_Calculate_Test.cs)  \n    \n- [Property_Numeric_Test](test/Vitorm.Sqlite.MsTest/CommonTest/Property_Numeric_Test.cs)  \n- [Property_Numeric_Calculate_Test](test/Vitorm.Sqlite.MsTest/CommonTest/Property_Numeric_Calculate_Test.cs)  \n    \n- [Property_DateTime_Test](test/Vitorm.Sqlite.MsTest/CommonTest/Property_DateTime_Test.cs)  \n    \n- [InnerJoin_BySelectMany](test/Vitorm.Sqlite.MsTest/CommonTest/Query_InnerJoin_BySelectMany_Test.cs)  \n- [InnerJoin_ByJoin](test/Vitorm.Sqlite.MsTest/CommonTest/Query_InnerJoin_ByJoin_Test.cs)  \n- [LeftJoin_BySelectMany](test/Vitorm.Sqlite.MsTest/CommonTest/Query_LeftJoin_BySelectMany_Test.cs)  \n- [LeftJoin_ByGroupJoin](test/Vitorm.Sqlite.MsTest/CommonTest/Query_LeftJoin_ByGroupJoin_Test.cs)  \n    \n- [GroupBy](test/Vitorm.Sqlite.MsTest/CommonTest/Query_Group_Test.cs)  \n- [Transaction](test/Vitorm.Sqlite.MsTest/CommonTest/Transaction_Test.cs)  \n    \n- [MySql-DbFunction](test/Vitorm.MySql.MsTest/CustomTest/DbFunction_Test.cs)  \n- [SqlServer-DbFunction](test/Vitorm.SqlServer.MsTest/CustomTest/DbFunction_Test.cs)  \n- [Sqlite-DbFunction](test/Vitorm.Sqlite.MsTest/CustomTest/DbFunction_Test.cs)  \n\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvit-orm%2Fvitorm","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fvit-orm%2Fvitorm","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvit-orm%2Fvitorm/lists"}