{"id":15560654,"url":"https://github.com/jdrodas/cervezascolombia","last_synced_at":"2025-04-23T21:11:03.155Z","repository":{"id":191745636,"uuid":"684379432","full_name":"jdrodas/CervezasColombia","owner":"jdrodas","description":"Aplicaciones usando C# y Python para demostrar conectividad a SQLite, PostgreSQL y MongoDB","archived":false,"fork":false,"pushed_at":"2023-12-18T21:51:27.000Z","size":1140,"stargazers_count":9,"open_issues_count":3,"forks_count":0,"subscribers_count":5,"default_branch":"main","last_synced_at":"2025-03-30T03:32:21.777Z","etag":null,"topics":["csharp","dapper-donet-core","mongodb","postgresql-database","sqlite","web-api-core"],"latest_commit_sha":null,"homepage":"","language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/jdrodas.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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}},"created_at":"2023-08-29T02:40:13.000Z","updated_at":"2024-04-18T15:55:17.000Z","dependencies_parsed_at":"2023-08-31T13:03:01.259Z","dependency_job_id":"40320218-72dc-42ac-a745-cb30ecf40550","html_url":"https://github.com/jdrodas/CervezasColombia","commit_stats":null,"previous_names":["jdrodas/cervezascolombia"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jdrodas%2FCervezasColombia","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jdrodas%2FCervezasColombia/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jdrodas%2FCervezasColombia/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jdrodas%2FCervezasColombia/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jdrodas","download_url":"https://codeload.github.com/jdrodas/CervezasColombia/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":250514789,"owners_count":21443209,"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":["csharp","dapper-donet-core","mongodb","postgresql-database","sqlite","web-api-core"],"created_at":"2024-10-02T16:02:14.443Z","updated_at":"2025-04-23T21:11:03.135Z","avatar_url":"https://github.com/jdrodas.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Cervezas Artesanales Colombia\n\nFor the english version of this readme file, scroll past the spanish version! ;-)\n\nAplicaciones usando .NET framework para demostrar conectividad a SQLite, PostgreSQL y MongoDB.\n\nPor favor tenga presente:\n\n- Es un proyecto académico que pretende evolucionar el aprendizaje de conceptos relacionados con bases de datos. **Esta no es una aplicación \"lista para producción\"**-\n\n- Toda la información almacenada en las tablas y colecciones de las bases de datos es información pública disponible en los sitios web de las cervecerías. No es 100% confiable y no pretende serlo.\n\n- Puede clonar el repositorio e inclusive proponer mejoras a través de issues, pero no necesariamente serán implementadas en el tiempo asignado para el curso. Siempre será un trabajo en constante modificación\n\n\n## PoC\n### [CervezasColombia_CS_PoC_Consola](https://github.com/jdrodas/CervezasColombia/tree/main/CervezasColombia_CS_PoC_Consola)\n- Prueba de Concepto para validar funcionamiento del ORM Dapper, con base de datos y PostgreSQL. Aplicación de **consola** en C# con framework .NET 7.x\n\n- Para cada base de datos, se realizan las operaciones CRUD básicas sobre una entidad específica.\n  \n- Para SQLite, se realizan invocaciones simples a sentencias de SQL.\n\n- Para PostgeSQL, se realizan invocaciones utilizando lógica almacenada.\n\n## API\n### [CervezasColombia_CS_API_PostgreSQL_Dapper](https://github.com/jdrodas/CervezasColombia/tree/main/CervezasColombia_CS_API_PostgreSQL_Dapper)\n- WebAPI en C# con framework .NET 7.x implementando **Patrón Repositorio** con capa de persistencia de datos en PostgreSQL a través de Dapper como ORM, utilizando lógica almacenada para realizar operaciones CRUD.\n\n\n### [CervezasColombia_CS_API_SQLite_Dapper](https://github.com/jdrodas/CervezasColombia/tree/main/CervezasColombia_CS_API_SQLite_Dapper)\n- WebAPI en C# con framework .NET 7.x implementando **Patrón Repositorio** con capa de persistencia de datos en SQLite a través de Dapper como ORM, utilizando sentencias SQL para realizar operaciones CRUD.\n\n# Craft Beers Colombia\n\nApps using .NET framework to demo database connectivity using SQLite, PostgreSQL and MongoDB.\n\nPlease keep in mind:\n\n- This is an academic project that aims to evolve the learning of concepts related to databases. **This is not a \"production ready\" application**.\n\n- All information stored in the tables and collections of the databases is public information available on the breweries' websites. It is not 100% reliable and it does not claim to be.\n\n- You can clone the repository and even propose improvements through github issues, but they will not necessarily be implemented in the time allotted for the course. It will always be a Work in progress.\n\n## PoC\n### [CervezasColombia_CS_PoC_Consola](https://github.com/jdrodas/CervezasColombia/tree/main/CervezasColombia_CS_PoC_Consola)\n- Proof of Concept (PoC) to learn how the Dapper ORM works, using SQLite and PostgreSQL as Database. **Console** application using .NET 7.x framework and C#\n\n- For each database, basic CRUD operations are performed on a specific entity.\n  \n- For SQLite, simple invocations to SQL statements are made.\n\n- For PostgeSQL, invocations are made using stored procedures.\n\n## API\n\n- WebAPI en C# con framework .NET 7.x implementando **Patrón Repositorio** con capa de persistencia de datos en PostgreSQL a través de Dapper, utilizando lógica almacenada para realizar operaciones CRUD.\n\n### [CervezasColombia_CS_API_PostgreSQL_Dapper](https://github.com/jdrodas/CervezasColombia/tree/main/CervezasColombia_CS_API_PostgreSQL_Dapper)\n- .NET 7.x WebAPI implementing **Repository Pattern** with infrastructure persistence layer in PostgreSQL using Dapper as ORM, using stored procedures and functions to perform CRUD operations.\n\n### [CervezasColombia_CS_API_SQLite_Dapper](https://github.com/jdrodas/CervezasColombia/tree/main/CervezasColombia_CS_API_SQLite_Dapper)\n- .NET 7.x WebAPI implementing **Repository Pattern** with infrastructure persistence layer in SQLite using Dapper as ORM, using SQL statements to perform CRUD operations.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjdrodas%2Fcervezascolombia","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjdrodas%2Fcervezascolombia","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjdrodas%2Fcervezascolombia/lists"}