BimlGen.MainWindow.GetBiml C# (CSharp) 메소드

GetBiml() 개인적인 메소드

private GetBiml ( BimlRequest request ) : void
request BimlRequest
리턴 void
        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 );
            }
        }