.net – 为什么二元Guids与通常的表示不同

前端之家收集整理的这篇文章主要介绍了.net – 为什么二元Guids与通常的表示不同前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有以下Guid:
AAB13E97-449B-4D5B-BDE2-AC479C31B782

使用System.Guid DbLinq sqlite存储它,以下字段将添加数据库中.

973EB1AA-9B44-5B4D-BDE2-AC479C31B782

(为清晰起见,添加了破折号)

我可以看到最后8个字节的顺序是相同的,并且3个第一组是相反的,但我不明白为什么.

看着 Wikipedia’s article on the subject它说:

Data4 stores the bytes in the same order as displayed in the GUID text encoding (see below),but the other three fields are reversed on little-endian systems (for example Intel cpus).

所以我总结道:

>这与所使用的DBMS或框架无关
>这取决于处理器架构
>这是设计的

所以问题仍然存在:

为什么他们这样设计呢?

原文链接:https://www.f2er.com/sqlite/453032.html

猜你在找的Sqlite相关文章