我正在使用配置部分设计器 (CSD) 来管理我的 ASP.NET 站点服务,到目前为止我很喜欢它。我轻松地创建了部分、集合和集合项(仅限属性)。问题是如何在 jsonWebApiService 类型的字符串中创建“Json”元素。我想我可能需要创建一个自定义元素和转换器。不确定任何建议、链接或想法是否会有所帮助。坎克斯。
问题是查看架构https://drive.google.com/file/d/0B4oqlkkf0yHDMHo0M21PZzBZeEU/edit?usp=sharing
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<jsonWebApiSection xmlns="Web.JsonWebApi.Configuration">
<services>
<jsonWebApiService uniqueName="products" typeFullName="Company.Services.Products" typeAssembly="Services" route="/public/services/products.json">
<json>{"Filter" :"OnSale"}</json>
</jsonWebApiService>
</services>
</jsonWebApiSection>
</configuration>