Rafael Almeida

Results 28 comments of Rafael Almeida
trafficstars

I did the repro here and had success with version 2.1-RC1 ```sql CREATE TABLE "PEOPLE" ( "ID" INTEGER GENERATED BY DEFAULT AS IDENTITY NOT NULL , "NAME" VARCHAR(60), "GIVENNAME" VARCHAR(60),...

```csharp public class Issue28Context : DbContext { public virtual DbSet People { get; set; } protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder) { var connectionString = @"User=SYSDBA;Password=masterkey;Database=..\..\..\Issue28.fdb;DataSource=localhost;Port=3050;"; optionsBuilder .UseFirebird(connectionString) .ConfigureWarnings(c => c.Log(CoreEventId.IncludeIgnoredWarning));...

Fix it for version 2.1. @MaceWindu Thanks! I did not look at the dialect!

All, well sorry for the delay, I'm going back to work.

Hello @ludydoo , I'm working on it, I'm spending some effort to tweak the provider and keep up with the 2.5 compatibility, since each provider was thought of 3.X. So...

Waiting for an example to reproduce the error.

I did the tests using your example and I could not simulate your error. The .csproj information is: ``` netcoreapp2.1 true Latest false ClientApp\ $(DefaultItemExcludes);$(SpaRoot)node_modules\** false %(DistFiles.Identity) PreserveNewest ``` Follow...

@souchprod, thanks for testing, I'll work on it today!