- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试在公开许多 System.TimeSpan 属性的 Entity Framework 对象上下文上创建 WCF 数据服务。但是,当我尝试访问该服务时,出现以下错误:“‘DepotRoute’类型上的属性‘ScheduledDepartureTime’属于‘Time’类型,这不是受支持的原始类型。”
我尝试过使用 DataServiceConfiguration.RegisterKnownType(typeof(TimeSpan)) 以及 DataServiceConfiguration.EnableTypeAccess(typeof(TimeSpan).FullName) 但这些似乎都没有任何区别 - 我仍然收到错误...
public static void InitializeService(DataServiceConfiguration config) {
config.SetEntitySetAccessRule("*", EntitySetRights.AllRead);
config.SetServiceOperationAccessRule("*", ServiceOperationRights.All);
config.DataServiceBehavior.MaxProtocolVersion = DataServiceProtocolVersion.V2;
config.UseVerboseErrors = true;
config.RegisterKnownType(typeof(TimeSpan));
config.EnableTypeAccess(typeof(TimeSpan).FullName);
RouteTable.Routes.Add(new ServiceRoute("Data", new DataServiceHostFactory(), typeof(Data)));
}
虽然我的上下文是作为 DbContext 生成的,但我已重写 CreateDataSource 以公开 ObjectContext,而不是将服务创建为 DataService...
protected override ObjectContext CreateDataSource() {
var context = new MercuryContext().ObjectContext;
context.ContextOptions.ProxyCreationEnabled = false;
return context;
}
不过,我也尝试过公开基于标准 EF 模型的服务,但这也没有什么区别。我什至尝试过使用 VS11 开发预览 - 这也无法公开我的属性。
我错过了什么?一定有某种方法可以做到这一点。
最佳答案
EF 不能在查询中使用 TimeSpan 类型;您需要将 TimeSpan 转换为它所代表的相应 DateTime 值。
关于asp.net - 具有 Entity Framework 的 WCF 数据服务 : TimeSpan support,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9454747/
我使用的语言是 C#。 我有以下困境。 DateTime A,DateTime B。如果 A < B,那么我必须计算该时间跨度内每年的天数,并将其乘以对应于该年的系数。我的问题是它可以跨越多年。 例如
我正在尝试将一些 TimeSpans 加在一起进行一些计算。 例如: var timeSpan1 = new TimeSpan.FromMinutes(1); var timeSpan2 = new
我有一个包含 500 个元素的 C# Queue。 我需要通过将 10 个 TimeSpans 分成一组并选择它们的平均值来将它们减少到 50 个元素。 有没有一种干净的方法来做到这一点?我认为 LI
当我尝试执行以下操作(作为示例)时,我收到了 System.FormatException: TimeSpan ts = XmlConvert.ToTimeSpan("P72H"); 我调查了 ISO
当我在R中运行以下代码时,我得到一个奇怪的注释(它仅在我第一次在 session 中运行代码时出现): > library(lubridate) Attaching package: ‘lubrida
我要实现的是获取从日期时间传递到当前日期时间的年份。 DateTime zeroTime = new DateTime(1, 1, 1); DateTime now = DateTime.Now; T
我遵循这里的建议: What is the correct SQL type to store a .Net Timespan with values > 24:00:00? 在名为 Timeshee
这个问题在这里已经有了答案: How do I convert an ISO8601 TimeSpan to a C# TimeSpan? (3 个答案) 关闭 6 年前。 我已经解析 ISO860
下面的代码工作正常: DateTime d1 = DateTime.Now; DateTime d2 = DateTime.Now.AddDays(-1); int d3 = (int)(d1 - d
我使用 POCO 将 RIA 服务与 Entity Framework 相结合。这一切都非常有效(比 LINQ to SQL 好得多)。我遇到的问题是以下代码段: [Query] public IQu
据我所知,我对 MySql Connector 有疑问。我使用 MySql 和 NHibernate。 我有一个包含这个字段的类: private TimeSpan begin; private Ti
我有 TimeSpan 数据表示为 24 小时格式,例如 14:00:00,我想将其转换为 12 小时格式,下午 2:00,我用 google 搜索并在 stackoverflow 和 msdn 中找
Timespan(0,0,secs) 和 Timespan.FromSeconds(secs) 的返回值有区别吗? 在我看来,不同之处在于 FromSeconds 接受 double。 最佳答案 最终
我正在寻找 .net 3.5 中的解决方案,我编写了以下工作解决方案: private string FormatTimeSpan(TimeSpan time) { return String
C# WPF 应用程序 我有一个 SplashScreen通过使用在启动时显示最短时间 Thread.Sleep(int); //int = milliseconds to display splas
我正在研究 Observable.Generate 的使用,以使用 msdn 网站上的示例作为起点来创建按时间间隔采样的结果序列。 以下没有 TimeSpan 选择器的代码不会出现内存泄漏: IObs
关闭。这个问题需要debugging details .它目前不接受答案。 编辑问题以包含 desired behavior, a specific problem or error, and th
关闭。这个问题需要debugging details .它目前不接受答案。 编辑问题以包含 desired behavior, a specific problem or error, and th
我的 MVC 应用程序中有这个问题。 我有 TimeSpan,其中包含例如 2 天 15 小时 31 分 34 秒。 我只想显示小时/分钟/秒,问题是我想将天数添加到小时,如 63:31:34 。我尝
我在 visual studio 2008 中开发了一个 Web 程序并将其转换为 2010。在 Datagrid 中,我有一个具有 TimeSpan 值的数据列。在 2008 年,我给了它字符串格式
我是一名优秀的程序员,十分优秀!