摘要:
这篇文章记录了我从一开始使用.NET访问数据库的历程,从一开始最基本的直接访问数据库存储过程,到后面使用SqlSugar、Dapper、Entity Framework (EF)框架的使用,看到这篇文章的初始版本,自己都觉得有点感慨我当初的傻里傻气 存储过程创建: ALTER procedure D 阅读全文
摘要:
public static void SaveCSV(DataTable dt, string fullPath) { var fi = new FileInfo(fullPath); if (!fi.Directory.Exists) { fi.Directory.Create(); } var 阅读全文
摘要:
1、使用 Aspose.Cells.dll using Aspose.Cells; 命名空间 public static DataTable AsposeReadExcel(string path) { Workbook workbook1 = new Workbook(path); Workshe 阅读全文
摘要:
SqlConnection conn = null; string conString = "Data Source=; Initial Catalog=数据库名;User ID=账户;Password=密码";//连接数据库的字符串 conn = new SqlConnection(conStri 阅读全文