LINQ 每秒可以创建多少个对象?
我使用Linq将对象插入数据库。但是如果我使用线程在1秒内同时创建20个对象,那么系统将无法将20个对象添加到数据库。
我发现这不是因为sql server的限制。所以唯一可能的是 Linq,有人有想法吗?如何在1秒内创建20条或更多记录?
I used Linq to insert objects into database.But if i used threads to simultanously create 20 object within 1 second, then system will fail to add 20 objects into database.
And I found it is not because of the sql server 's limit. so the only possible is Linq, any one have idea ? How can I create 20 records or more in 1 second within 1 second ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您提到您正在使用线程将 20 条记录插入数据库。如果您使用相同的数据库上下文,这可能是您的问题。我不相信 L2S 数据库上下文对象是线程安全的。
You mentioned you are using threads to insert 20 records into your database. If you are using the same database context, this could be your problem. I don't believe the L2S database context object is thread safe.