说,我有一个像这样的动作定义
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"
?