I have a Bigint column in my Table in SQL server as a Primary Key and when I request from a client with axios
or fetch
in React, it has a problem with ids like 9223372036854775800
and converts all of them to 9223372036854776000
!!!,
How can I fix that?
BigInt
– Windswept