GBase Server database provider for Entity Framework Core.
$ dotnet add package GeneralData.EntityFrameworkCore.GBaseGeneralData.EntityFrameworkCore.GBase is the EF Core database provider package for GeneralData GBase8s.
Call the UseGBase method to choose the GBase8s database provider for your DbContext. For example:
protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder)
{
optionsBuilder.UseGBase("database=dbms_gbase;host=xxx.xxx.xxx.xxx;service=9088;server=gbasedbt_server;User ID=GBasedbt;Password=GBasedbt;");
}