honk
honk
CC#
Created by honk on 5/19/2023 in #help
❔ Force log out the user after account deletion with JWT bearer auth.
Thanks, will look into it!
15 replies
CC#
Created by honk on 2/16/2023 in #help
❔ Auto incremented Id not sequential
Sorry for the late response, discord isn't showing me notifications for some reason. Nextval incremented the value by 1 each time I called it
11 replies
CC#
Created by honk on 2/16/2023 in #help
❔ Auto incremented Id not sequential
Yes.
create sequence "MyTable_Id_seq";

alter sequence "MyTable_Id_seq" owner to postgres;

alter sequence "MyTable_Id_seq" owned by "MyTable"."Id";
create sequence "MyTable_Id_seq";

alter sequence "MyTable_Id_seq" owner to postgres;

alter sequence "MyTable_Id_seq" owned by "MyTable"."Id";
11 replies
CC#
Created by honk on 2/16/2023 in #help
❔ Auto incremented Id not sequential
I'm using Postgres db and looking at the sequence, nothing seems to be out of the ordinary( it was auto generated by ef). The issue seems to be with this table only as well.
11 replies
CC#
Created by honk on 2/16/2023 in #help
❔ Auto incremented Id not sequential
Just realized most of these are incrementing by 33, however there are a few exceptions catthinking
11 replies
CC#
Created by honk on 2/2/2023 in #help
❔ Performance of many small requests vs less but bigger requests
Yeah, I'll change it to 1 big requests. I didn't pay any attention to the number of requests at first but seeing them rapid firing in fiddler made me reconsider haha, thanks for the help guys!
16 replies
CC#
Created by honk on 2/2/2023 in #help
❔ Performance of many small requests vs less but bigger requests
Also, the average size of response body is around 80 Kilobytes
16 replies
CC#
Created by honk on 2/2/2023 in #help
❔ Performance of many small requests vs less but bigger requests
The responses are aggregated and returned to the user after the fetching is completely done, as in, User doesn't see a thing unless ALL 400 requests have been made
16 replies
CC#
Created by honk on 8/25/2022 in #help
Validating an object not received during a request(FluentValidation) [Answered]
Thanks! Didn't even know that bit about automatic validation!
10 replies