我想知道什麼是最好的方式來表示應該包含C#債券格式的這些字段的表?C#債券中可用的數據類型是什麼?
- 串名字
- 串名字
- 串電子郵件
- 布爾註冊
- 日期時間DateJoined
- 焦炭性別
- 列表<串>收藏
- 串城
- 串國家
- unit16郵編
- 串國家
- 列表<串> FrequentPagesURLs
而且我希望有類似格式的東西
namespace MyProject
{
struct Key
{
0: required string Email;
}
struct Value
{
0: required string FirstName;
1: optional char Gender;
.
.
.
}
}
我不知道代表char
,DateTime
和的最佳方式是什麼3210以C#bond格式用於在Object store中創建表格。
我在生成DateTime,char等部分中感到非常困惑。 我不知道如何以我上面提到的格式在架構文件中編寫它。 如果您可以提供示例給出我需要創建的表格,那將會非常棒。 –
關於[如何表示'TimeSpan']存在一個存在的問題(https://stackoverflow.com/questions/39492730/implementing-an-equivalent-of-c-sharp-timespan-in-microsoft-bond)到[DateTime的示例](https://github.com/Microsoft/bond/tree/master/examples/cs/core/date_time)。 – chwarr