尝试在SQLite数据库中创建表时,Xamarin会抛出类型或命名空间错误

时间:2015-04-13 19:34:57

标签: android sqlite xamarin

我正在尝试在SQLite数据库中创建一个表。当我去调试时,我得到了一个'类型或名称空间错误'对于表名。

string dbPath = Path.Combine (Environment.GetFolderPath (Environment.SpecialFolder.Personal), "fcdb.sqlite");
                using (var connection = new SQLite.SQLiteConnection ("Data Source=" + dbPath))
                {
                    connection.CreateTable<CounselingEmotionalSupport> (0);
                };

在CounselingEmotionalSupport行引发错误。我似乎无法解决这个问题,即使我最初尝试命名字符串并且没有重构或解析解决方案。

1 个答案:

答案 0 :(得分:0)

愚蠢的错误#102012 - 班级名称是咨询而不是咨询情感支持。