使用 SQLite 的 LINQ-to-SQL:“SELECT”附近的语法错误插入时
我一直在为我的应用程序使用 System.Data.SQLite 提供程序。然而,当我尝试创建新对象并将其插入数据库时,我在“SELECT”附近收到 SQL 语法错误
。
基本上我的代码看起来像:
//supplies is a DataContext connected to my DB
Table<Store> stores = supplies.Stores;
//...
Store newStore = new Store();
// A Store has an Id (pk autoincrement), Name, Number, and EntitySet<Usages>
newStore.Name = "New Store";
newStore.Number = 0;
//...
stores.InsertOnSubmit(newStore);
supplies.SubmitChanges();
但分布在一些方法中。
这是一个常见/新手问题吗?如果是这样,我做错了什么? 如果没有,我应该在哪里/如何调试它?我对 LINQ-to-SQL 相当陌生。
UPDATE:错误发生前生成的最后一个查询的日志输出是这样的:
INSERT INTO [Stores]([Number], [Name])
VALUES (@p0, @p1)
SELECT CONVERT(Int,SCOPE_IDENTITY()) AS [value]
-- @p0: Input Int32 (Size = 0; Prec = 0; Scale = 0) [0]
-- @p1: Input String (Size = 0; Prec = 0; Scale = 0) [New Store]
-- Context: SqlProvider(Sql2008) Model: AttributedMetaModel Build: 3.5.30729.4926
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这里有一篇关于如何显示正在生成的 SQL 的文章,这可能会更好地了解 SQLite 不喜欢的内容:http://msdn.microsoft.com/en-us/library/bb386961.aspx
编辑日志:从 SqlProvider(Sql2008) 部分来看,它似乎正在尝试使用SqlServer 2008 语法而不是 SQLite 语法,这可以解释为什么它认为该语法无效。
再次编辑以获取更多信息:有关 SQLite 和 Linq 的信息,请参阅此问题:LINQ with SQLite (linqtosql)
There's an article here about how to show the SQL being generated which might give a better idea of what SQLite doesn't like: http://msdn.microsoft.com/en-us/library/bb386961.aspx
EDIT for log: From the SqlProvider(Sql2008) part, it looks like it's trying to use SqlServer 2008 syntax instead of SQLite syntax which would explain why it thinks the syntax is invalid.
EDIT again for further info: See this question for info on SQLite and Linq: LINQ with SQLite (linqtosql)