1

我正在处理 SharePoint 2010 托管 WCF 数据服务的问题。所以请记住,我只能使用 .NET 3.5。为了生成用于描述我的实体的 CSDL 端点,我使用了适当的装饰器,并且我享受反射的好处来为我处理这项工作。

这是 MEX 点的代码:

[BasicHttpBindingServiceMetadataExchangeEndpoint]
[ServiceBehavior(IncludeExceptionDetailInFaults = true)]
public class Demarches : DataService<CacheDataContext>
{
    public static void InitializeService(DataServiceConfiguration config)
    {
        config.UseVerboseErrors = true;
        config.SetEntitySetAccessRule("*", EntitySetRights.AllRead);
        config.SetServiceOperationAccessRule("*", ServiceOperationRights.AllRead);
        config.DataServiceBehavior.MaxProtocolVersion = DataServiceProtocolVersion.V2;
    }
}

这是我使用上面的代码获得的 CSDL 文件的一部分:

<?xml version="1.0" encoding="utf-8" standalone="yes"?>
 <edmx:Edmx Version="1.0" xmlns:edmx="http://schemas.microsoft.com/ado/2007/06/edmx">
  <edmx:DataServices xmlns:m="http://schemas.microsoft.com/ado/2007/08/dataservices/metadata" m:DataServiceVersion="1.0">
<Schema Namespace="XXX.Poco" xmlns:d="http://schemas.microsoft.com/ado/2007/08/dataservices" xmlns:m="http://schemas.microsoft.com/ado/2007/08/dataservices/metadata" xmlns="http://schemas.microsoft.com/ado/2006/04/edm">
  <EntityType Name="Demarche">
    <Key>
      <PropertyRef Name="id" />
    </Key>
    <Property Name="id" Type="Edm.Int32" Nullable="false" />
    <Property Name="titre" Type="Edm.String" Nullable="true" />
    <Property Name="avancement" Type="Edm.String" Nullable="true" />
    <Property Name="date" Type="Edm.DateTime" Nullable="false" />
    <NavigationProperty Name="historiques" Relationship="XXX.Poco.Demarche_historiques" FromRole="Demarche" ToRole="historiques" />
    <NavigationProperty Name="proprietes" Relationship="XXX.Poco.Demarche_proprietes" FromRole="Demarche" ToRole="proprietes" />
    <Property Name="CacheDurationInSeconds" Type="Edm.Int32" Nullable="false" />
    <Property Name="CacheDurationInMinutes" Type="Edm.Int32" Nullable="false" />
    <Property Name="CacheDurationInHours" Type="Edm.Int32" Nullable="false" />
  </EntityType>

我必须在“avancement”属性上放置一个标志,因为它是我的业务代码中的一个枚举,我想动态地知道,当我阅读 CSDL 端点时,枚举是什么属性以便在我开发时提供动态过滤系统客户端应用程序。例如,我应该有类似的东西<Property Name="avancement" Type="Edm.String" Nullable="true" isFilterable="true"/>

首先,你知道这种修改是否会破坏一些工具解析,如 SvcUtil.exe、Jaydata.exe 吗?那么,例如,当我初始化 Web 服务配置时,是否有可能以编程方式实现此目标?

感谢您的建议。

4

0 回答 0