GetBiml() 공개 정적인 메소드

public static GetBiml ( BimlRequest request ) : string
request BimlRequest
리턴 string
예제 #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);
            }
        }