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
I'm following a tutorial and using the .UseMySQL extension from Assembly SapientGuardian.EntityFrameworkCore.MySql, Version=7.1.19.0, Culture=neutral, PublicKeyToken=null
I am using the migrations from IdentityServer4 PersistedGrant Migration.
The Table Gets created properly with "text" data type but all inserts clip data column because of the insert statement below. Is there a way to override the insert statement?
I'm following a tutorial and using the .UseMySQL extension from Assembly SapientGuardian.EntityFrameworkCore.MySql, Version=7.1.19.0, Culture=neutral, PublicKeyToken=null
I am using the migrations from IdentityServer4 PersistedGrant Migration.
The Table Gets created properly with "text" data type but all inserts clip data column because of the insert statement below. Is there a way to override the insert statement?
info: Microsoft.EntityFrameworkCore.Storage.IRelationalCommandBuilderFactory[1]
Executed DbCommand (5ms) [Parameters=[@p0='?' (Size = 200), @p1='?' (Size = 50), @p2='?' (Size = 200), @p3='?', @P4='?' (Size = 255), @p5='?', @p6='?' (Size = 200)], CommandType='Text', CommandTimeout='30']
INSERT INTO
PersistedGrants
(Key
,Type
,ClientId
,CreationTime
,Data
,Expiration
,SubjectId
)VALUES (@p0, @p1, @p2, @p3, @P4, @p5, @p6);
dbug: MySQL.Data.Entity.MySQLRelationalConnection[6]
Committing transaction.
The text was updated successfully, but these errors were encountered: