{"id":27142408,"url":"https://github.com/leandrovip/vip.sqlquery","last_synced_at":"2025-04-08T07:46:32.424Z","repository":{"id":49161847,"uuid":"179375334","full_name":"leandrovip/Vip.SqlQuery","owner":"leandrovip","description":"Simple library for generate sql queries to MS SQL SERVER","archived":false,"fork":false,"pushed_at":"2025-04-07T17:41:09.000Z","size":70,"stargazers_count":1,"open_issues_count":0,"forks_count":1,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-04-07T18:08:19.660Z","etag":null,"topics":["library","query-builder","sql-queries","sql-server","vip"],"latest_commit_sha":null,"homepage":null,"language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/leandrovip.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}},"created_at":"2019-04-03T21:48:27.000Z","updated_at":"2025-04-07T17:41:12.000Z","dependencies_parsed_at":"2022-09-05T22:12:49.955Z","dependency_job_id":null,"html_url":"https://github.com/leandrovip/Vip.SqlQuery","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/leandrovip%2FVip.SqlQuery","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/leandrovip%2FVip.SqlQuery/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/leandrovip%2FVip.SqlQuery/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/leandrovip%2FVip.SqlQuery/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/leandrovip","download_url":"https://codeload.github.com/leandrovip/Vip.SqlQuery/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247801180,"owners_count":20998331,"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","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":["library","query-builder","sql-queries","sql-server","vip"],"created_at":"2025-04-08T07:46:31.612Z","updated_at":"2025-04-08T07:46:32.414Z","avatar_url":"https://github.com/leandrovip.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Vip.SqlQuery\n\n[![License](https://img.shields.io/github/license/leandrovip/Vip.SqlQuery)](https://raw.githubusercontent.com/leandrovip/Vip.SqlQuery/master/LICENSE)\n[![NuGet](https://img.shields.io/nuget/v/Vip.SqlQuery)](https://www.nuget.org/packages/Vip.SqlQuery) \n[![NuGet Downloads](https://img.shields.io/nuget/dt/Vip.SqlQuery.svg)](https://www.nuget.org/packages/Vip.SqlQuery) \n\n\u003cbr /\u003e\n\nThis is a very simple library to generate ***SELECT***  queries in SQL SERVER. It is possible generate queries with many columns, prefix, many possibles where´s clause, parameters and more. :v: :wink:\n\n## Requirements\n\n```\n.Net Standard 2.0\n```\n\n## How to use ?\n\nDeclare a using:\n\n```csharp\nusing Vip.SqlQuery;\n```\n\nCode:\n\n```csharp\nvar query = SqlQuery.New()\n    .Select(new[] {\"ProductId\" \"Product\", \"Description\", \"Price\", \"p\"})\n    .From(\"Product p\")\n    .OrderBy(\"p.ProdutoId\")\n    .Build();\n```\n\nQuery return:\n\n```csharp\nConsole.Write(query.Command)\n\n/*\nSELECT [p].[ProductId], [p].[Product], [p].[Description], [p].[Price]\nFROM [Product] [p]\nORDER BY [p].[ProdutoId]\n*/\n```\n\n## License\nMIT\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fleandrovip%2Fvip.sqlquery","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fleandrovip%2Fvip.sqlquery","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fleandrovip%2Fvip.sqlquery/lists"}