• SQL Table 自动生成Net底层-控制器Autofac注入


    自动生成BaseController注入业务接口

            public static string DataTableToAutoface(DataTable dt,string nameSpace)
            {
                StringBuilder sb = new StringBuilder();
    
                StringBuilder sbContent = new StringBuilder();
                for (var i = 0; i < dt.Rows.Count; i++)
                {
                    sbContent.AppendFormat(@"
            public I{0} I{0}
            {{
                get {{ return DependencyResolver.Current.GetService<I{0}>() as I{0}; }}
            }}", dt.Rows[i]["name"] + "Service");
                }
    
                sb.AppendFormat(@"
    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Web;
    using System.Web.Mvc;
    using Autofac;
    using {0}.Mapping;
    using {0}.IService;
    
    namespace {0}.UIBase.Controllers
    {{
        /// <summary>
        /// 系统控制器层注入入口(统一生成请不要修改文件)
        /// </summary>
        public partial class BaseController : Controller
        {{
            {1}
        }}
    }}", nameSpace, sbContent);
                return sb.ToString();
    
            }
    View Code

    Global.asax

    public static void RegisterRoutes(RouteCollection routes)
            {
                routes.IgnoreRoute("{resource}.axd/{*pathInfo}");
    
                routes.MapRoute(
                    name: "Default",
                    url: "{controller}/{action}/{id}",
                    defaults: new { controller = "Home", action = "Index", id = UrlParameter.Optional }
                );
            }
    
            protected void Application_Start()
            {
           
                var builder = new ContainerBuilder();
                builder.RegisterModule(new ConfigurationSettingsReader("命名"));
                Assembly[] asm = PluginHelper.GetAllAssembly().ToArray();
    
                //Assembly.LoadFrom(Path.GetFileNameWithoutExtension("SharpSvn.dll"));
                builder.RegisterAssemblyTypes(asm);
                builder.RegisterControllers(Assembly.GetExecutingAssembly());
                builder.RegisterAssemblyTypes(Assembly.GetExecutingAssembly());
                builder.RegisterModelBinderProvider();
                builder.RegisterFilterProvider();//注册Filter        
                var container = builder.Build();
                DependencyResolver.SetResolver(new AutofacDependencyResolver(container));
                AreaRegistration.RegisterAllAreas();
                RegisterRoutes(RouteTable.Routes);
            }
    View Code

    PluginHelper

            /// <summary>
            /// 根据名称获取dll程序集
            /// </summary>
            /// <param name="dllName"></param>
            /// <returns></returns>
            public static List<Assembly> GetAllAssembly(string dllName = "*.Area.dll")
            {            
                List<string> pluginpath = FindPlugin(dllName);
                List<Assembly> list = new List<Assembly>();
                Assembly asm = null;
                foreach (string filename in pluginpath)
                {
                    try
                    {
                        string asmname = Path.GetFileNameWithoutExtension(filename);
                        if (asmname != string.Empty)
                        {
                            asm = Assembly.LoadFrom(filename);
                            list.Add(asm);
                        }
                    }
                    catch (Exception ex)
                    {
                        Console.Write(ex.Message);
                    }
                }
                return list;
            }
    
    
            //查找所有插件的路径
            static List<string> FindPlugin(string dllName)
            {
                List<string> pluginpath = new List<string>();
                try
                {
                    string path = AppDomain.CurrentDomain.BaseDirectory;
                    string dir = Path.Combine(path, "bin");
                    string[] dllList = Directory.GetFiles(dir, dllName);
                    if (dllList != null && dllList.Length > 0)
                    {
                        foreach (var item in dllList)
                        {
                            pluginpath.Add(Path.Combine(dir, item.Substring(dir.Length + 1)));
                        }
                    }
                }
                catch (Exception ex)
                {
    
                }
                return pluginpath;
            }
    View Code

    配置文件

    <configSections>
        <section name="module" type="Autofac.Configuration.SectionHandler, Autofac.Configuration"/>
      </configSections>
      <lq-module>
        <modules>
          <module type="命名空间.Service,命名空间"></module>
          <module type="命名空间.Repository,命名空间"></module>
        </modules>
      </lq-module>
    </configuration>
    
    web.config
      <命名>
        <files>
          <file name="Config/Module.config" section="module" />
        </files>
      </命名>
    View Code
  • 相关阅读:
    os.path.split()、os.path.realpath()和os.path.join()
    我终于也有了自己的博客网站
    (Bug修复)C#爬虫,让你不再觉得神秘
    DevExpress弹框、右键菜单、Grid的使用
    Linux 宝塔部署 ASP.NET Core 应用
    C#高级特性(反射)
    WPF 的内部世界(Binding)
    WPF 的内部世界(控件与布局)
    Layui事件监听(表单和数据表格)
    (待更新)tensorboard [Fatal error in launcher: Unable to create process using]
  • 原文地址:https://www.cnblogs.com/plming/p/8046856.html
Copyright © 2020-2023  润新知