{"id":18736323,"url":"https://github.com/dotnetcore/entityframeworkcore.kingbasees","last_synced_at":"2025-04-12T19:21:58.172Z","repository":{"id":199722712,"uuid":"703548919","full_name":"dotnetcore/EntityFrameworkCore.KingbaseES","owner":"dotnetcore","description":"Entity Framework Core provider for KingbaseES Database","archived":false,"fork":false,"pushed_at":"2024-12-17T15:51:29.000Z","size":1677,"stargazers_count":49,"open_issues_count":0,"forks_count":6,"subscribers_count":9,"default_branch":"main","last_synced_at":"2024-12-30T21:15:50.945Z","etag":null,"topics":["database","entity-framework","entity-framework-core","kingbase","orm"],"latest_commit_sha":null,"homepage":"","language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"postgresql","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/dotnetcore.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}},"created_at":"2023-10-11T12:58:04.000Z","updated_at":"2024-12-12T08:29:52.000Z","dependencies_parsed_at":"2023-12-08T02:25:08.209Z","dependency_job_id":"435ab772-e71f-4d94-bec7-d6728ff33ce6","html_url":"https://github.com/dotnetcore/EntityFrameworkCore.KingbaseES","commit_stats":null,"previous_names":["dotnetcore/entityframeworkcore.kingbasees"],"tags_count":2,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dotnetcore%2FEntityFrameworkCore.KingbaseES","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dotnetcore%2FEntityFrameworkCore.KingbaseES/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dotnetcore%2FEntityFrameworkCore.KingbaseES/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dotnetcore%2FEntityFrameworkCore.KingbaseES/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/dotnetcore","download_url":"https://codeload.github.com/dotnetcore/EntityFrameworkCore.KingbaseES/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248618715,"owners_count":21134285,"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":["database","entity-framework","entity-framework-core","kingbase","orm"],"created_at":"2024-11-07T15:20:15.034Z","updated_at":"2025-04-12T19:21:58.140Z","avatar_url":"https://github.com/dotnetcore.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"# DotNetCore Entity Framework Core provider for KingbaseES for R6 V008R006C008B0014\n\n[![Member project of .NET Core Community](https://img.shields.io/badge/member%20project%20of-NCC-9e20c9.svg)](https://github.com/dotnetcore) \n[![nuget](https://img.shields.io/nuget/v/DotNetCore.EntityFrameworkCore.KingbaseES.svg?style=flat-square)](https://www.nuget.org/packages/DotNetCore.EntityFrameworkCore.KingbaseES) \n[![stats](https://img.shields.io/nuget/dt/DotNetCore.EntityFrameworkCore.KingbaseES.svg?style=flat-square)](https://www.nuget.org/stats/packages/DotNetCore.EntityFrameworkCore.KingbaseES?groupby=Version) \n\n`DotNetCore.EntityFrameworkCore.KingbaseES` is an open source Entity Framework Core provider for KingbaseES. It supports you to interact with KingbaseES via EFCore, the most widely-used .NET O/RM from Microsoft, up to its latest version, and use familiar LINQ syntax to express queries.\n\n## Getting Started\n\n### 1. Project Configuration\n\nEnsure that your `.csproj` file contains the following reference:\n\n```xml\n\u003cPackageReference Include=\"DotNetCore.EntityFrameworkCore.KingbaseES\" Version=\"6.0.22\" /\u003e\n```\n\n### 2. Services Configuration\n\nAdd `DotNetCore.EntityFrameworkCore.KingbaseES` to the services configuration in your the `Startup.cs` file of your ASP.NET Core project:\n\n```csharp\npublic class Startup\n{\n    public void ConfigureServices(IServiceCollection services)\n    {\n        // Replace with your connection string.\n        var connectionString = \"host={host};port={port};database={database};username={username};password={password};\";\n\n        // Replace 'YourDbContext' with the name of your own DbContext derived class.\n        services.AddDbContext\u003cYourDbContext\u003e(\n            dbContextOptions =\u003e dbContextOptions\n                .UseKdbndp(connectionString)\n        );\n    }\n}\n```\n\n### 3. Sample Application\n\nCheck out our [Basic Test](https://github.com/dotnetcore/EntityFrameworkCore.KingbaseES/tree/main/test/KingbaseES.BasicTest) for an example repository that includes an ASP.NET Core MVC Application.\n\nThere are also many complete and concise console application samples posted in the issue section (some of them can be found by searching for `Program.cs`).\n\n### 4. Read the EF Core Documentation\n\nRefer to Microsoft's [EF Core Documentation](https://docs.microsoft.com/en-us/ef/core/) for detailed instructions and examples on using EF Core.\n\n## Scaffolding / Reverse Engineering\n\nUse the [EF Core tools](https://docs.microsoft.com/en-us/ef/core/cli/dotnet) to execute scaffolding commands:\n\n```\ndotnet ef dbcontext scaffold \"Server=localhost;User=root;Password=1234;Database=ef\" \"DotNetCore.EntityFrameworkCore.KingbaseES\"\n```\n\n## Contribute\n\nOne of the easiest ways to contribute is to report issues and participate in discussions. You can also contribute by submitting pull requests with code changes and supporting tests.\n\nWe are always looking for additional core contributors. If you got a couple of hours a week and know your way around EF Core and KingbaseES, give us a nudge.\n\n## License\n\n[PostgreSQL license](https://github.com/dotnetcore/EntityFrameworkCore.KingbaseES/blob/main/LICENSE)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdotnetcore%2Fentityframeworkcore.kingbasees","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdotnetcore%2Fentityframeworkcore.kingbasees","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdotnetcore%2Fentityframeworkcore.kingbasees/lists"}