문제

Is there an azure table storage type that maps to a ulong? It seems like there isn't a very good way to store a number greater than Int64.MaxValue.

도움이 되었습니까?

해결책

The supported data types currently are found on MSDN - http://msdn.microsoft.com/en-us/library/windowsazure/dd179338.aspx. As you've seen ulong isn't one of them.

However, you can get around this by dealing with serialization/deserialization on your own. If you are using the 2.0 or greater Storage library you can use the ITableEntity interface on your object, override the ReadEntity and WriteEntity methods.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top