我正在尝试将数据与DateStamp存储在WP7上的本地数据库中。我已关注MSDN Guidance并创建了以下代码:
[Table]
public class HistoricGame
{
[Column(IsDbGenerated = true, IsPrimaryKey = true)]
public int Id { get; set; }
[Column]
public DateTime DateStamp { get; set; }
[Column]
public string GameId { get; set; }
[Column]
public int Score { get; set; }
[Column]
public int LongestSequence { get; set; }
}
public class HistoricGameContext : DataContext
{
public const string ConnectionString = "Data Source=isostore:/NumbersNerdDB.sdf";
public HistoricGameContext()
:base(ConnectionString)
{}
public Table<HistoricGame> HistoricGames
{
get { return GetTable<HistoricGame>(); }
}
}
调用它来写入数据库:
private void StoreThisGame()
{
using (var db = new HistoricGameContext())
{
if (!db.DatabaseExists())
db.CreateDatabase();
var game = new HistoricGame
{
DateStamp = DateTime.Now,
GameId = "1",
LongestSequence = _currentGame.LongestCorrectSequence,
Score = _currentGame.TotalPoints
};
db.HistoricGames.InsertOnSubmit(game);
db.SubmitChanges(); //<- This is where it throws an InvalidCastException
}
}
但是db.SubmitChanges();
不断向InvalidCastException
发送消息“无法从类型'System.DateTime'转换为'System.Byte []'。”
我找不到任何指向数据库相关问题的内容,虽然我使用的原始示例不包含DateTime,但Silverlightshow.net上的示例确实在非常相似的上下文中使用了DateTime。
我是在找错了地方还是在找不到的东西?
答案 0 :(得分:0)
我遇到了类似的问题。
在我的情况下,它丢失了我的表的“服务器数据类型”属性的值。我将属性“Type”定义为DateTime,但这还不够。