You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
DotNetCore Entity Framework Core provider for KingbaseES for R6 V008R006C008B0014
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.
Getting Started
1. Project Configuration
Ensure that your .csproj file contains the following reference:
Add DotNetCore.EntityFrameworkCore.KingbaseES to the services configuration in your the Startup.cs file of your ASP.NET Core project:
publicclassStartup{publicvoidConfigureServices(IServiceCollectionservices){// Replace with your connection string.varconnectionString="host={host};port={port};database={database};username={username};password={password};";// Replace 'YourDbContext' with the name of your own DbContext derived class.services.AddDbContext<YourDbContext>(
dbContextOptions =>dbContextOptions.UseKdbndp(connectionString));}}
3. Sample Application
Check out our Basic Test for an example repository that includes an ASP.NET Core MVC Application.
There 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).
4. Read the EF Core Documentation
Refer to Microsoft's EF Core Documentation for detailed instructions and examples on using EF Core.
Scaffolding / Reverse Engineering
Use the EF Core tools to execute scaffolding commands:
dotnet ef dbcontext scaffold "Server=localhost;User=root;Password=1234;Database=ef" "DotNetCore.EntityFrameworkCore.KingbaseES"
Contribute
One 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.
We 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.