Exemple #1
0
        /// <summary>
        /// 预览DAL
        /// </summary>
        private void showDALPreview(string tableName)
        {
            //2. 获取表名
            //tableName = Right_listBox.Items[0].ToString();

            //3. 获取“其他项”里面的信息

            //3.1 获取命名空间
            string ns = namespace_textBox.Text.Trim();  //命名空间

            //3.1.1 判断“命名空间是否不为空”
            if (string.IsNullOrEmpty(ns))
            {
                MessageBox.Show("请输入命名空间!");
                return;
            }

            //3.2 获取表前缀
            string tablePrefix = table_prefix_textBox.Text.Trim();
            //3.2.1 去掉前缀
            string className = tableName.Replace(tablePrefix, "");

            //3.2.2 将类名第一个字母进行大写
            className = className.Substring(0, 1).ToUpper() + className.Substring(1);

            //3.3 获取作者信息
            string author = author_textBox.Text.Trim();
            //4. 获取连接字符串
            string connStr = getConnstr();

            //5. 获取 Model 模板代码
            preview_textEditorControl.Text = DALTemplate.GetDALTemplate(ns, tableName, author, className, connStr);
        }
Exemple #2
0
        public static List <Templates> GetTemplateList()
        {
            DALTemplate _template = new DALTemplate();

            List <Templates> list = _template.GetTemplateList();

            return(list);
        }
Exemple #3
0
        public static Templates GetTemplate(int TemplateID)
        {
            DALTemplate _template = new DALTemplate();

            Templates template = _template.GetTemplate(TemplateID);

            return(template);
        }
Exemple #4
0
        /// <summary>
        /// Generate code using given settings
        /// </summary>
        /// <param name="settings"></param>
        public static void Generate(CGenSettings settings)
        {
            if (!Directory.Exists(settings.PathToProjectFolder))
            {
                throw new Exception("Folder does not exists");
            }

            var template = new DALTemplate(settings);
            var dal      = template.TransformText();

            File.WriteAllText(Path.Combine(settings.PathToProjectFolder, "DAL.cs"), dal);
        }
Exemple #5
0
        /// <summary>
        /// 生成 DAL 文件
        /// </summary>
        /// <param name="ns"></param>
        /// <param name="author"></param>
        /// <param name="outputPath"></param>
        /// <param name="tablePrefix"></param>
        /// <param name="connStr"></param>
        public static void GenerateDAL(string ns, string author, string outputPath, string tablePrefix, string connStr, ListBox.ObjectCollection items)
        {
            string dalOutputPath = "";

            //检查生成路径的末尾是否为“\”
            if (outputPath.LastIndexOf("\\") == 0)
            {
                //如果路径最后是“\”,则在该路径下的 DAL 文件夹下建立 DAL 文件
                dalOutputPath = outputPath + "DAL\\";
            }
            else
            {
                //如果路径不是以“\”结尾,则需要补上
                dalOutputPath = outputPath + "\\DAL\\";
            }

            //检查 DAL 文件夹是否存在
            if (!Directory.Exists(dalOutputPath))
            {
                //不存在则创建
                Directory.CreateDirectory(dalOutputPath);
            }

            string className = "";

            //遍历要生成的表,生成 DAL
            foreach (string tableName in items)
            {
                //去掉表名的前缀
                className = tableName.Replace(tablePrefix, "");
                //将类名的一个字母大写
                className = className.Substring(0, 1).ToUpper() + className.Substring(1);
                //定义文件路径
                string filePath = dalOutputPath + className + ".cs";
                //声明文档流对象,采取覆盖模式
                StreamWriter sw = new StreamWriter(filePath, false);
                //生成文档
                sw.Write(DALTemplate.GetDALTemplate(ns, tableName, author, className, connStr));
                //关闭文档流
                sw.Flush();
                sw.Close();
                sw.Dispose();
            }
        }
Exemple #6
0
        public static bool AddTemplate(string templateName, string templateFile)
        {
            DALTemplate _template = new DALTemplate();

            return(_template.AddTemplate(templateName, templateFile));
        }