5

我正在使用 EF 5 和 c#。

在我的主项目中,我使用 CodeFirst 创建我的数据库。我得到了这个实体:

    public class Shift {
    public string Name { get; set; }
    public TimeSpan StartTime { get; set; }
    public TimeSpan EndTime { get; set; }
    }

TimeSpan 属性在数据库中创建为 time(7),而不是 null。

在我的 MainProject 中,一切正常。

但是,当在同一个解决方案中从 Windows 服务项目(我使用 Mainproject 中的相同上下文和模型)访问数据库时,我收到此错误:

此行(在 Mainproject 中多次使用):

context.Shifts.Load();

结果是

There is no store type corresponding to the conceptual side type 'Edm.Time(Nullable=True,DefaultValue=,Precision=)' of primitive type 'Time'.

这个问题的原因是什么?

//编辑

有趣的是,我们的主要项目在没有我们的 helo 的情况下创建了 time Column。

我用我们主项目中的配置替换了服务的 App.Config 文件,现在它可以工作了吗?

我还是想知道为什么硬...

<?xml version="1.0" encoding="utf-8"?>
<configuration>
  <configSections>
    <!-- For more information on Entity Framework configuration, visit http://go.microsoft.com/fwlink/?LinkID=237468 -->
    <section name="entityFramework" type="System.Data.Entity.Internal.ConfigFile.EntityFrameworkSection, EntityFramework, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
    <section name="log4net" type="log4net.Config.Log4NetConfigurationSectionHandler,Log4net" />
  </configSections>
  <connectionStrings>
    <add name="DevConnectionString" connectionString="Data Source=xxxxxxIntegrated Security=True" providerName="System.Data.SqlClient" />
    <add name="Properties.Settings.DevConnectionString" connectionString="Integrated Security=TrueMultipleActiveResultSets=True" providerName="System.Data.SqlClient" />
  </connectionStrings>
  <startup>
    <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" />
  </startup>
  <entityFramework>
    <defaultConnectionFactory type="System.Data.Entity.Infrastructure.SqlConnectionFactory, EntityFramework" />
  </entityFramework>
  <log4net>
    <root>
      <level value="DEBUG" />
      <appender-ref ref="LogFileAppender" />
    </root>
    <appender name="LogFileAppender" type="log4net.Appender.RollingFileAppender">
      <param name="File" value="log\Error.log" />
      <param name="AppendToFile" value="true" />
      <rollingStyle value="Size" />
      <maxSizeRollBackups value="10" />
      <maximumFileSize value="10MB" />
      <staticLogFileName value="true" />
      <layout type="log4net.Layout.PatternLayout">
        <param name="ConversionPattern" value="%n%-5p %d{yyyy-MM-dd hh:mm:ss} – %m%n" />
      </layout>
    </appender>
  </log4net>
  <runtime>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Windows.Interactivity" publicKeyToken="31bf3856ad364e35" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-4.5.0.0" newVersion="4.5.0.0" />
      </dependentAssembly>
    </assemblyBinding>
  </runtime>
</configuration>
4

2 回答 2

16

实体框架版本 5 不映射时间跨度。但是无论如何,您都可以使用解决方法来使用它。

只需将时间跨度存储为 TimeSpan 以进行操作,并将时间跨度存储为 Int64 以进行映射

public Int64 TimeSpanTicks{ get; set; }     
[NotMapped]
public TimeSpan TimeSpanValue
{
    get { return TimeSpan.FromTicks(TimeSpanTicks); }
    set { TimeSpanTicks= value.Ticks; }
}
于 2013-03-22T09:56:08.577 回答
5

您的问题可能由您的 SqlServer 版本解释。

Entity Framework 5确实支持TimeSpan. 它time用作 Sql 支持类型。对该time类型的支持始于 SqlServer 2008。您是否可以从 SqlServer 2005 实例切换到 08 或更高版本?这将导致一切突然像你所经历的那样工作。

值得一提的是,将 TimeSpan 与 EF 一起使用可能会出现问题,因为后备类型 oftime(7)将仅保存长度小于 24 小时的时间跨度。因此,通常使用 floAr 提到的解决方法。

于 2013-11-01T20:28:48.363 回答