3

我正在尝试将一条记录插入到我的表中Test,我正在使用 LINQ 技术:

问题是我的time表中有一个类型为的列,Time(7)但是当我尝试向表中插入数据时出现此错误:

Operand type clash: bigint is incompatible with time

这是我test在 SQL 中的表设计:

SQL Server 2012 中的表“测试”

我在 C# 中的表实现:

[Table(Name = "Test")]
class TableTest
{
    private int _id;
    [Column(IsPrimaryKey = true, Name = "id", Storage = "_id")]
    public int id
    {
        get { return _id; }
        set { _id = value; }
    }
    private TimeSpan _time;
    [Column(Name = "time", Storage = "_time")]
    public TimeSpan time
    {
        get { return _time; }
        set { _time = value; }
    }
}

在这里我尝试插入我的记录:

    DataContext dc = new DataContext(@"Data Source=.;Initial Catalog=DBTest;Integrated Security=True");

    private void button1_Click(object sender, EventArgs e)
    {
        TableTest t = new TableTest();
        t.id = 1;
        t.time = new TimeSpan(7, 30, 0);
        Table<TableTest> t_insert = dc.GetTable<TableTest>();
        t_insert.InsertOnSubmit(t);
        dc.SubmitChanges();  // error Here !!!!!
    }

我已经搜索了每个地方,我发现的只是Time()我应该使用的映射 sql 类型TimeSpan,请告诉我我做错了什么!谢谢

4

1 回答 1

7

ColumnAttribute需要包含DbType参数。将其设置为

[Column(Storage="_time", DbType="Time NOT NULL")]

您可以在MSDN上查看更多信息。

于 2013-05-09T22:59:45.067 回答