HuaweiCloud.EntityFrameworkCore.GaussDB 0.0.1-preview.1

This is a prerelease version of HuaweiCloud.EntityFrameworkCore.GaussDB.
dotnet add package HuaweiCloud.EntityFrameworkCore.GaussDB --version 0.0.1-preview.1
                    
NuGet\Install-Package HuaweiCloud.EntityFrameworkCore.GaussDB -Version 0.0.1-preview.1
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="HuaweiCloud.EntityFrameworkCore.GaussDB" Version="0.0.1-preview.1" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="HuaweiCloud.EntityFrameworkCore.GaussDB" Version="0.0.1-preview.1" />
                    
Directory.Packages.props
<PackageReference Include="HuaweiCloud.EntityFrameworkCore.GaussDB" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add HuaweiCloud.EntityFrameworkCore.GaussDB --version 0.0.1-preview.1
                    
#r "nuget: HuaweiCloud.EntityFrameworkCore.GaussDB, 0.0.1-preview.1"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package HuaweiCloud.EntityFrameworkCore.GaussDB@0.0.1-preview.1
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=HuaweiCloud.EntityFrameworkCore.GaussDB&version=0.0.1-preview.1&prerelease
                    
Install as a Cake Addin
#tool nuget:?package=HuaweiCloud.EntityFrameworkCore.GaussDB&version=0.0.1-preview.1&prerelease
                    
Install as a Cake Tool

GaussDB Entity Framework Core provider for GaussDB

HuaweiCloud.EntityFrameworkCore.GaussDB is the open source EF Core provider for GaussDB. It allows you to interact with GaussDB via the most widely-used .NET O/RM from Microsoft, and use familiar LINQ syntax to express queries. It's built on top of GaussDB.

The provider looks and feels just like any other Entity Framework Core provider. Here's a quick sample to get you started:

await using var ctx = new BlogContext();
await ctx.Database.EnsureDeletedAsync();
await ctx.Database.EnsureCreatedAsync();

// Insert a Blog
ctx.Blogs.Add(new() { Name = "FooBlog" });
await ctx.SaveChangesAsync();

// Query all blogs who's name starts with F
var fBlogs = await ctx.Blogs.Where(b => b.Name.StartsWith("F")).ToListAsync();

public class BlogContext : DbContext
{
    public DbSet<Blog> Blogs { get; set; }

    protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder)
        => optionsBuilder.UseGaussDB(@"Host=myserver;Username=mylogin;Password=mypass;Database=mydatabase");
}

public class Blog
{
    public int Id { get; set; }
    public string Name { get; set; }
}

Aside from providing general EF Core support for GaussDB, the provider also exposes some GaussDB-specific capabilities, allowing you to query JSON, array or range columns, as well as many other advanced features. For more information, see the the GaussDB site. For information about EF Core in general, see the EF Core website.

Product Compatible and additional computed target framework versions.
.NET net10.0 is compatible.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
0.0.1-preview.1 96 7/30/2025