错误附近:")"在SqliteConnection Xamarin中

时间:2016-03-05 02:04:01

标签: xamarin sqlite

我一直在努力解决这个问题很长时间,但我无法找到任何解决方案。每当我试图插入新记录时,我都会收到错误。

这是我的代码。

// SqliteConnection声明

import {JL} from 'jsnlog';

//我的班级表

public SQLiteConnection con = new SQLiteConnection(Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.Personal), "myDB.db3"));

//最后,我的表创建和数据插入

[Table("BELToDoTask_TB")]
public class BELToDoTask_TB
{
    [PrimaryKey,AutoIncrement,Column("_id")]
    public int id { get; set; }

    [MaxLength(50)]
    public string TaskName { get; set; }
}

请帮忙! 在此先感谢:)

0 个答案:

没有答案