加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 百科 > 正文

LINQ to SQLite完美解决方案

发布时间:2020-12-12 19:57:18 所属栏目:百科 来源:网络整理
导读:1、下载安装LinqConnectExpress(就是LinqConnect免费版) 2、安装好后就和 LINQTO SQL 一样了! 3、查询(增删改查和 LINQTO SQL 完全一样,你可以不用改一句代码!本文原创来自数据库之家,转载请注明出处,谢谢) CrmDemoDataContext context = new CrmDe
CrmDemoDataContext context =newCrmDemoDataContext();// Create a new categoryProductCategory newCategory =newProductCategory();newCategory.CategoryID = 1000;newCategory.CategoryName ="New category";// Create a new productProduct newProduct =newProduct();newProduct.ProductID = 2000;newProduct.ProductName ="New product";newProduct.Price = 20;// Associate the new product with the new categorynewProduct.ProductCategory = newCategory;context.Products.InsertOnSubmit(newProduct);// Send the changes to the database.// Until you do it,the changes are cached on the client side.context.SubmitChanges();

5、更新

product.ProductName ="Edited product";product.Price = 15;context.SubmitChanges();

6、删除

context.products.DeleteOnSubmit(newProduct);context.productcategories.DeleteOnSubmit(newCategory);context.SubmitChanges();

更多。。。。等待更新

原文链接: LINQ to SQLite 参考资料:

-------------------------------------------------------------------------------------------------------------------------------------------------
找亮点,求真相,程序猿、攻城狮都喜欢
亮点图
内涵图
数据库优化
数据库教程
数据库实战经验分享博客

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

1、下载安装LinqConnectExpress(就是LinqConnect免费版)

2、安装好后就和LINQTO SQL 一样了!

3、查询(增删改查和LINQTO SQL 完全一样,你可以不用改一句代码!本文原创来自数据库之家,转载请注明出处,谢谢)

CrmDemoDataContext context = new CrmDemoDataContext(); var query = from it in context.Companies orderby it.CompanyID select it; foreach (Company comp in query) Console.WriteLine( "{0} | {1} | {2}" ,comp.CompanyID,comp.CompanyName,comp.Country); Console.ReadLine(); 4、增加
    推荐文章
      热点阅读