Replies: 1 comment 1 reply
-
Configure<AbpSequentialGuidGeneratorOptions>(options =>
{
options.DefaultSequentialGuidType = SequentialGuidType.SequentialAtEnd;
}); |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I use MySql and SQLServer
I first used UseMySQL and then UseSQLServer,GuidGenerator.Create() data is SequentialGuidType.SequentialAsString
But SQLServer is SequentialGuidType.SequentialAtEnd is more reasonable
Now,I Create Method CreateGuid(this IGuidGenerator guidGenerator, SequentialGuidType guidType) to work
Is there any good solution?
Beta Was this translation helpful? Give feedback.
All reactions