This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public class Vendedor | |
| declare @TableName sysname = 'TableName' | |
| declare @Result varchar(max) = 'public class ' + @TableName + ' | |
| {' | |
| select @Result = @Result + ' | |
| public ' + ColumnType + NullableSign + ' ' + ColumnName + ' { get; set; } | |
| ' | |
| from | |
| ( |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <# | |
| REVISÕES | |
| Hilton Junior - Data: 26/06/2017 11:28 | |
| Ajustes finais | |
| Hilton Junior - Data: 26/06/2017 17:23 | |
| Rotina de conexão com banco acertada para ambiente abaixo de 2.0, uso de credenciais nao funciona nos mesmos. | |