Exemple #1
0
        private void GetBiml(BimlRequest request)
        {
            var biml = BimlGenerator.GetBiml(request);

            if (!string.IsNullOrEmpty(biml))
            {
                var now       = DateTime.Now;
                var timestamp = "" + now.Hour + now.Minute + now.Second;
                File.WriteAllText(string.Format("{0}\\{1}{2}.biml", request.OutputFolder, request.DatabaseName, timestamp), biml);
            }
        }