ASP .Net Core使用EPPlus实现Api导入导出,这里使用是EPPlus 4.5.2.1版本,.Net Core 2.2.在linux上运行的时候需要安装libgdiplus . 下面我们看下如何实现导出导入的功能. 新建项目ASP.NET Core Web Api .添加Test类 public class Test { public int Id { get; set; } public string Name { get; set; } public int Age { get…