asp.net core开源组件练习

刚刚接触web后台开发和asp.net core,下面是对于一些使用比较普遍的开源组件学习了解和记录,有一些是自己写的,有一些是搬运网上其他大神的博客。
(持续更新中)


  1. MySql.Data连MySql数据库
  2. MySql.Data+Dapper实现数据库对象映射
  3. ASP.NET Core 导入导出Excel xlsx 文件
  4. Npgsql EF Core PostgreSQL 数据库驱动
  5. Newtonsoft.Json,Json操作类库,支持序列化和反序列化
    官网:http://www.newtonsoft.com/json
    官方文档:http://www.newtonsoft.com/json/help/html/Introduction.htm
    相关博客:http://www.cnblogs.com/yanweidie/p/4605212.html
  6. NLog 日志框架
    官网:http://nlog-project.org/
    github地址:https://github.com/NLog/NLog
    .net core:https://github.com/NLog/NLog.Extensions.Logging/blob/master/README.md#how-to-use
  7. Swagger API自动化文档工具
    官网:http://swagger.io/
    github:https://github.com/domaindrivendev/Swashbuckle
    .net core:https://docs.microsoft.com/en-us/aspnet/core/tutorials/web-api-help-pages-using-swagger
  8. Redis 数据库 .NET Core 客户端库
    github地址:https://github.com/StackExchange/StackExchange.Redis
    Basic Usage:https://github.com/StackExchange/StackExchange.Redis/blob/master/Docs/Basics.md
    demo:https://github.com/BinGithub2015/aspdotnetcore/tree/master/StackExchange.Redis.Demo

你可能感兴趣的:(ASP.NET,Core)