4

我首先将现有的 sqlite3 数据库(通过 system.data.sqlite)映射到实体框架(版本 5)代码时遇到问题。

数据库中有一个名为 notes 的表,我映射到我的实体类:

public class Note
{   
    [Column("ZNAME")
    public string Name { get; set; }

    [Column("ZDATE")]
    public DateTime Date  { get; set; }

    [Column("ZNOTE")]
    public string Description { get; set; }
}

例如,在数据库中,我有 2 行,其中 ZDATE 字段为空,其他有一些日期(例如:30/12/1899 21:00:05)。当我对其进行单元测试时,当我试图获取整个集合或第一行的空日期时间字段时,我得到了臭名昭著的异常:“字符串未被识别为有效的日期时间。” 试图只获得其他行(带日期),我的测试通过了。

起初我认为将 DateTime 更改为字符串会解决问题,但它给了我同样的例外。我尝试使用 DateTime?,同样的错误。

看起来,也许我错了,System.Data.Sqlite 试图将该字段转换为日期时间(因为名称或其他原因)。

这是我的异常的堆栈跟踪:

at System.DateTimeParse.ParseExactMultiple(String s, String[] formats, DateTimeFormatInfo dtfi, DateTimeStyles style)
   at System.DateTime.ParseExact(String s, String[] formats, IFormatProvider provider, DateTimeStyles style)
   at System.Data.SQLite.SQLiteConvert.ToDateTime(String dateText, SQLiteDateFormats format, DateTimeKind kind)
   at System.Data.SQLite.SQLiteConvert.ToDateTime(String dateText)
   at System.Data.SQLite.SQLiteConvert.ToDateTime(IntPtr ptr, Int32 len)
   at System.Data.SQLite.SQLite3.GetDateTime(SQLiteStatement stmt, Int32 index)
   at System.Data.SQLite.SQLite3.GetValue(SQLiteStatement stmt, Int32 index, SQLiteType typ)
   at System.Data.SQLite.SQLiteDataReader.GetValue(Int32 i)
   at System.Data.Common.Internal.Materialization.Shaper.ErrorHandlingValueReader`1.GetUntypedValueDefault(DbDataReader reader, Int32 ordinal)
   at System.Data.Common.Internal.Materialization.Shaper.ErrorHandlingValueReader`1.GetValue(DbDataReader reader, Int32 ordinal)
   at System.Data.Common.Internal.Materialization.Shaper.GetPropertyValueWithErrorHandling[TProperty](Int32 ordinal, String propertyName, String typeName)
   at lambda_method(Closure , Shaper )
   at System.Data.Common.Internal.Materialization.Shaper.HandleEntityAppendOnly[TEntity](Func`2 constructEntityDelegate, EntityKey entityKey, EntitySet entitySet)
   at lambda_method(Closure , Shaper )
   at System.Data.Common.Internal.Materialization.Coordinator`1.ReadNextElement(Shaper shaper)
   at System.Data.Common.Internal.Materialization.Shaper`1.SimpleEnumerator.MoveNext()
   at System.Linq.Enumerable.First[TSource](IEnumerable`1 source)

有人可以给我一些见解如何解决这个问题。

4

2 回答 2

0

您需要使用日期时间吗?作为类型

[Column("ZDATE")]
public DateTime? Date  { get; set; }

这将允许 Date 字段的空值

于 2012-11-13T09:00:39.267 回答
0

在 SQLite 中,日期的格式必须为yyyy-mm-dd.

于 2012-11-13T14:39:26.727 回答