- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
考虑以下带有 OData v3 的简单 ASP.NET Web Api。
MyEntity.cs
public class MyEntity
{
public Guid Id { get; set; }
public string Name { get; set; }
}
MyEntitiesController.cs
public class MyEntitiesController : ODataController
{
public IEnumerable<MyEntity> Get()
{
return new MyEntity[] { new MyEntity() { Id = Guid.NewGuid(), Name = "Name" } };
}
[HttpPost]
public string MyAction()
{
return "Hello World!";
}
}
WebApiConfig.cs
public static class WebApiConfig
{
public static void Register(HttpConfiguration config)
{
var modelBuilder = new ODataConventionModelBuilder();
modelBuilder.Namespace = "MyNamespace";
modelBuilder.ContainerName = "MyContainer";
modelBuilder.EntitySet<MyEntity>("MyEntities");
var action = modelBuilder.Entity<MyEntity>().Action("MyAction");
action.Returns<string>();
foreach (var structuralType in modelBuilder.StructuralTypes)
{
// Resets the namespace so that the service contains only 1 namespace.
structuralType.GetType().GetProperty("Namespace").SetValue(structuralType, "MyNamespace");
}
var model = modelBuilder.GetEdmModel();
config.Routes.MapODataServiceRoute("OData", "odata", model);
}
}
在客户端,我添加了一个简单的服务引用。
程序.cs
class Program
{
static void Main(string[] args)
{
var contextAtom = new MyContainer(new Uri("http://localhost:63939/odata/"));
contextAtom.Format.UseAtom();
var myEntityAtom = contextAtom.MyEntities.First();
// Outputs: http://localhost:63939/odata/MyEntities(guid'2c2431cd-4afa-422b-805b-8398b9a29fec')/MyAction
var uriAtom = contextAtom.GetEntityDescriptor(myEntityAtom).OperationDescriptors.First().Target;
Console.WriteLine(uriAtom);
// Works fine using ATOM format!
var responseAtom = contextAtom.Execute<string>(uriAtom, "POST", true);
var contextJson = new MyContainer(new Uri("http://localhost:63939/odata/"));
contextJson.Format.UseJson();
var myEntityJson = contextJson.MyEntities.First();
// Outputs: http://localhost:63939/odata/MyEntities(guid'f31a8332-025b-4dc9-9bd1-27437ae7966a')/MyContainer.MyAction
var uriJson = contextJson.GetEntityDescriptor(myEntityJson).OperationDescriptors.First().Target;
Console.WriteLine(uriJson);
// Throws an exception using the JSON uri in JSON format!
var responseJson = contextJson.Execute<string>(uriJson, "POST", true);
// Works fine using ATOM uri in JSON format!
var responseJson2 = contextJson.Execute<string>(uriAtom, "POST", true);
}
}
我的问题是,根据用于查询实体的格式,操作描述符目标 URI 是不同的。来自 ATOM 的目标 URI 工作正常,但来自 JSON 的目标 URI 总是抛出异常。
有没有办法让操作描述符在使用两种格式(ATOM 和 JSON)时正常工作,而不是手动连接 URI?
请注意,我在使用 OData v4 时遇到了同样的问题,但将 MyNamespace.MyAction 作为标题和目标 URI 而不是 MyContainer.MyAction。
最佳答案
我能够重现这个问题,这是客户端的一个错误。我发现的唯一解决方法是扩展 MyContainer 类以提供调用操作的强类型方法:
namespace <NAMESPACE_OF_MYCONTAINER_CLASS>
{
public partial class MyContainer
{
public double MyAction(Guid id)
{
Uri actionUri = new Uri(this.BaseUri,
String.Format("MyEntities(guid'{0}')/MyAction", id)
);
return this.Execute<string>(actionUri,
"POST", true).First();
}
}
}
描述here .我已经跟踪了这个问题并且看起来很旧,我发现了这个 post一个人 (Uffe Lauesen) 在他的第二篇文章中解释了当使用 json 格式时他读取 ActionDescriptor 类的 Title(而不是 Target)属性时的一些异常行为。
您仍然在他们的 github page. 中打开了 odata.net 的问题
更新:
我跟踪了这个问题,Atom 格式使用 NoOpEntityMetadataBuilder 返回非计算操作(使用 atom 格式它解析 xml 并从提要中获取操作)。
internal override IEnumerable<ODataAction> GetActions()
{
DebugUtils.CheckNoExternalCallers();
return this.entry.NonComputedActions;
}
相反,Json 格式使用 ODataConventionalEntityMetadataBuilder,它返回与非计算操作连接的计算操作:
internal override IEnumerable<ODataAction> GetActions()
{
DebugUtils.CheckNoExternalCallers();
return ODataUtilsInternal.ConcatEnumerables(this.entryMetadataContext.Entry.NonComputedActions, this.MissingOperationGenerator.GetComputedActions());
}
对于计算操作,我们结束了在 EdmLibraryExtensions 中调用此扩展函数:
internal static string FullName(this IEdmEntityContainerElement containerElement)
{
Debug.Assert(containerElement != null, "containerElement != null");
return containerElement.Container.Name + "." + containerElement.Name;
}
所以我认为这里最好不要返回 container.Name,只返回 containerElement.Name。在 github 中解决问题并发布正式版本之前,运行具有此最小更改的 Microsoft OData 库的修补版本可以避免该问题。
关于c# - WebApi OData v3 OperationDescriptor 根据格式(atom vs json)返回不同的标题/目标 URI,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29629758/
我附上了一个我尝试使用 html/css 实现的示例(如果您看不到图像:名字和姓氏,然后第二行是职位描述)。我希望所有文本(两行)在一个 div 中强制对齐(左和右),但我不确定这是否可能。我尝试了一
我想使两个 h1 元素成为 div 上的标题/页眉。所以每个都在特定的 div 之上。 Youtube Achievements
我想让每个 EditText 对象都有自己的标题,就像 Pure Android 指南中那样 (screenshot) 这个东西有原生支持吗?我想他们也可能会使用带有部分的 ListView ,但这对
是否可以像 UITableView headerView 一样创建 UICollectionView 标题 View ?我的意思是整个集合 View 的标题 View ,而不是每个部分的重复 View
我一直在遵循有关排版的 Google 官方 Material 设计指南 (http://www.google.com/design/spec/style/typography.html),但我发现它们
我目前正在尝试找到可以帮助我从视频文件中提取元数据或信息的 python 库,例如 [ mp4, Mkv, Avi, WebM, mpg ] 格式为例。 我主要从视频文件中提取的主要数据是 [标题、描
你好, 这是我正在尝试做的: 将每个缩略图的内容(img + 标题)居中。我的 img 必须是 span3,标题必须是 span4。 这是我的问题: 我可以获取内容中心,或者标题 float 在 im
我有一个带有导航栏的应用程序,可以从一个 View Controller 导航到下一个 View Controller 。在某些模拟器和设备上导航到下一个 View Controller 时,后退按钮
我遇到了一些非常酷的 t-sql,可以从一个 t-sql 查询中的选定行生成一个逗号分隔的列值列表: SELECT @MyList = ISNULL(@MyList,'') + Title + ',
请确保将 HTML heading 标签只用于标题。不要仅仅是为了生成粗体或的文本而使用标题。 搜索引擎使用标题为您的网页的结构和内容编制索引。 因为用户可以通过标题来快速浏览您的网页,所以用标
我正在使用 wkhtmltopdf 将 html 转换为 pdf。 我想在每个页面中添加标题,但它只显示在第一页(目录)中。 我使用的命令是 "C:\Program Files\wkhtmltopdf
如何使用 ggplot2 显示观察的方向(标题)?有没有办法调整shape=17 (三角形)以便它“指向”下一次观察? 示例代码 library(ggplot2) dat % pivot_wide
我尝试在 cocoa 应用程序中显示/隐藏标题栏。我使用以下代码: if ([window styleMask]==NSResizableWindowMask) { [wind
我有这样的 HTML 标题 http://s1.postimg.org/4ebyk3qwv/image.png 当我编写这段代码时: document.getElementById("TL85_1_
我叫麦克。谢谢你的帮助。 在Wordpress中,我们已经设计了我们的网站,以便在Facebook调试器中og数据尽可能接近youtube。尽管如此,在Facebook上共享视频的方式还是不同的。尽管
从 web 应用程序的客户端,我点击了服务器端路由,它只是第三方 API 的包装器。使用分派(dispatch),我试图让服务器端请求返回 exact header 和第三方 API 对客户端 AJA
从 web 应用程序的客户端,我点击了服务器端路由,它只是第三方 API 的包装器。使用分派(dispatch),我试图让服务器端请求返回 exact header 和第三方 API 对客户端 AJA
我是 SAPUI5 的新手,在导航、侧边栏和标题方面遇到一些问题。我想开发一个带有标题和侧边栏的应用程序。我为此使用“ToolPage”。每个页面都包含工具页,如下所示:
我最近在为客户做的项目中被介绍给Go。他们已经建立了代码库,需要进行一些更改。 我注意到所有的方法,结构等等都有一些奇怪的类似于标题的注释,如下所示: // SomeType ... type Som
我创建了一个采用整个屏幕布局的标题布局(xml 文件)... 我还创建了一个 listView 并将此 header_layout 添加到 listView 中: LayoutInflater inf
我是一名优秀的程序员,十分优秀!