Oracle - 00600 - issue on PrimaryKey
Posted: Fri 29 May 2020 14:03
Hello developer Team,
I have an issue with a simple core query on the primary key:
ora-00600: internal error code, arguments: [qkeexhs], [121], [] ...
I tried two differents methods to achieve this goal with same error:
Method 1:
return await context.Set<TEntity>().FindAsync(id);
Method 2:
return await context.Set<Application>()
.Include(...)
.ThenInclude(...)
.SingleOrDefaultAsync(app=>app.id = id)
It's a code first application, the migration/seed data and other operations like (ToListAsync, AddSync ...) have been executed correctly. The issue seem to be only on FindAsync and SingleOrDefaultAsync operations.
The environment is:
Visual studio 2017, EntityframeworkCore.tools (2.1.1), devart.data.oracle.efcore (9.6.646) with direct connection.
Thank you, for your help.
I have an issue with a simple core query on the primary key:
ora-00600: internal error code, arguments: [qkeexhs], [121], [] ...
I tried two differents methods to achieve this goal with same error:
Method 1:
return await context.Set<TEntity>().FindAsync(id);
Method 2:
return await context.Set<Application>()
.Include(...)
.ThenInclude(...)
.SingleOrDefaultAsync(app=>app.id = id)
It's a code first application, the migration/seed data and other operations like (ToListAsync, AddSync ...) have been executed correctly. The issue seem to be only on FindAsync and SingleOrDefaultAsync operations.
The environment is:
Visual studio 2017, EntityframeworkCore.tools (2.1.1), devart.data.oracle.efcore (9.6.646) with direct connection.
Thank you, for your help.