上一页 1 ··· 8 9 10 11 12 13 14 15 16 下一页
摘要: 任务助手 https://www.cnblogs.com/shanlin/p/3954531.html MVVM https://blog.csdn.net/xpj8888/article/details/86238364 阅读全文
posted @ 2020-11-09 09:21 丹心石 阅读(71) 评论(0) 推荐(0) 编辑
摘要: WebAPI 安全认证 阅读全文
posted @ 2020-11-05 23:39 丹心石 阅读(257) 评论(0) 推荐(0) 编辑
摘要: 之前用Ninject,最近因工作需要开始研究Autofac,其实两者都差不多,只是实现方法上有些区别,原理都一样,下面总结一下基础知识。 Autofac是一款IOC框架,它很轻量级性能非常高。(先吹捧一下,提高学习积极性) 控制反转(IOC Inverse of Control) 调用者不再创建被调 阅读全文
posted @ 2020-11-04 14:56 丹心石 阅读(179) 评论(0) 推荐(0) 编辑
摘要: 省略接口和类的实现,具体如上图: using Autofac;using System;using System.Linq;using System.Reflection;namespace autofacBatchResolver{ class Program { static void Main 阅读全文
posted @ 2020-11-04 14:09 丹心石 阅读(1016) 评论(0) 推荐(0) 编辑
摘要: 1.创建一个控制台项目 AutofacConsole 2.创建文件夹Abstract,在文件夹中创建接口 namespace AutofacConsole.Abstract{ public interface IDatabase { string Name { get; } void Select( 阅读全文
posted @ 2020-11-04 10:39 丹心石 阅读(273) 评论(0) 推荐(0) 编辑
摘要: 1.首先创建一个类库,用于创建模型 Contact using System; namespace Common{ public class Contact { public string Id { get; set; } public string Name { get; set; } publi 阅读全文
posted @ 2020-10-30 17:03 丹心石 阅读(239) 评论(0) 推荐(0) 编辑
摘要: AutoFac 阅读全文
posted @ 2020-10-29 11:08 丹心石 阅读(231) 评论(0) 推荐(0) 编辑
摘要: MySql EF 阅读全文
posted @ 2020-10-25 22:03 丹心石 阅读(826) 评论(0) 推荐(0) 编辑
摘要: 1.启动顺寻 public class program{ public static void Main(string[] args) CreateWebHostBuilder(args).Build().Run(); } public static IWebHostBuilder CreateWe 阅读全文
posted @ 2020-10-15 21:44 丹心石 阅读(296) 评论(0) 推荐(0) 编辑
摘要: 简单的认证设置: 1.在Web.config配置文件中增加 <authentication mode="Forms"> <forms loginUrl="~/Account/Login" timeout="2880"> <credentials passwordFormat="Clear"> <us 阅读全文
posted @ 2020-10-07 14:11 丹心石 阅读(107) 评论(0) 推荐(0) 编辑
上一页 1 ··· 8 9 10 11 12 13 14 15 16 下一页