0

看来我可以设计一个具有 DateTime 数据类型的类,如下所示用于在 SQlite DB 中创建表:

 公共类客户
 {

   [主键,自动增量]
   公共 int CustomerId { 获取;放; }        

   公共 int CompanyID { 获取;放; }           

   公共日期时间时间{获取;放; }

   公共小数价格 { 得到;放; }

 }

我有以下问题:

  1. 可以使用上面的类在 SQLite 中创建表

  2. 可以将日期时间数据插入表中吗?

如果不是,解决方法是什么?处理 DateTime 的最佳做法是什么?

如果您可以提供一些可以使用 LinQ 或 Where/Select 语句通过 DateTime 查询表的代码,将不胜感激。

谢谢

4

1 回答 1

0

DateTime is acceptable in SQLite like normal data type (int, string, decimal, etc.). If you are facing any particualar problem while using DateTime, post the newer question.

于 2013-09-26T07:37:15.393 回答