如何在DynamicTableEntity Powershell中添加GUID列?

时间:2018-10-10 09:17:32

标签: powershell azure-table-storage

我正在使用“ DynamicTableEntity”(Powershell)在其中添加列。下面是我的示例代码-

$obj = New-Object "Microsoft.WindowsAzure.Storage.Table.DynamicTableEntity" "1", "0"
$obj.Properties.Add("Id", "00000000-0000-0000-0000-000000000000")

在上面的代码中,我要添加Id列,并希望将其数据类型添加到GUID,但是我不确定如何在此处定义数据类型。

有人可以帮我吗?

我尝试了这个

$obj.Properties.Add("Id", EntityProperty.GeneratePropertyForGuid("00000000-0000-0000-0000-000000000000"))

但是这里我没有得到“ EntityProperty”类。

0 个答案:

没有答案