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