摘要:
任务助手 https://www.cnblogs.com/shanlin/p/3954531.html MVVM https://blog.csdn.net/xpj8888/article/details/86238364 阅读全文
摘要:
之前用Ninject,最近因工作需要开始研究Autofac,其实两者都差不多,只是实现方法上有些区别,原理都一样,下面总结一下基础知识。 Autofac是一款IOC框架,它很轻量级性能非常高。(先吹捧一下,提高学习积极性) 控制反转(IOC Inverse of Control) 调用者不再创建被调 阅读全文
摘要:
省略接口和类的实现,具体如上图: using Autofac;using System;using System.Linq;using System.Reflection;namespace autofacBatchResolver{ class Program { static void Main 阅读全文
摘要:
1.创建一个控制台项目 AutofacConsole 2.创建文件夹Abstract,在文件夹中创建接口 namespace AutofacConsole.Abstract{ public interface IDatabase { string Name { get; } void Select( 阅读全文
摘要:
1.首先创建一个类库,用于创建模型 Contact using System; namespace Common{ public class Contact { public string Id { get; set; } public string Name { get; set; } publi 阅读全文
摘要:
AutoFac 阅读全文
摘要:
MySql EF 阅读全文
摘要:
1.启动顺寻 public class program{ public static void Main(string[] args) CreateWebHostBuilder(args).Build().Run(); } public static IWebHostBuilder CreateWe 阅读全文
摘要:
简单的认证设置: 1.在Web.config配置文件中增加 <authentication mode="Forms"> <forms loginUrl="~/Account/Login" timeout="2880"> <credentials passwordFormat="Clear"> <us 阅读全文