如何使OData v4函数/动作字符串Unicode?

时间:2015-01-15 11:22:58

标签: c# odata odata-v4

说,我有一个像这样的动作定义

builder.EntitySet<Ent>("Ent");
var companyActionConfig = builder.EntityType<Ent>().Action("MethodX");
entActionConfig.Parameter<int>("SomeParam1");
entActionConfig.Parameter<string>("SomeParam2");
entActionConfig.Returns<bool>();

然后在元数据中结果如此

<Action Name="MethodX" IsBound="true">
    <Parameter Name="bindingParameter" Type="Ent"/>
    <Parameter Name="SomeParam1" Type="Edm.Int32" Nullable="false"/>
    <Parameter Name="SomeParam2" Type="Edm.String" Unicode="false"/>
    <ReturnType Type="Edm.Boolean" Nullable="false"/>
</Action>

此处Unicode为假。此定义是否与.NET字符串一样工作,或者如何使其显示为Unicode="true"

我怎样才能Unicode="true"

0 个答案:

没有答案