Unity/Firestore
Firebase의 숫자값은 Long?
lipnus
2024. 3. 17. 02:52
반응형
Firestore Document를 Dictionary<string, object> 형태로 받았을 때, 숫자 Value의 경우 보면 Long이다.
int = System.int32
long = System.int64
주의 필요...
이거 때문에 ES3 에서 이런 에러 발생
Error
System.InvalidOperationException: Trying to load data of type System.Int32, but data contained in file is type of System.Int64
반응형