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
declare @GeneratePocoForTablesLike varchar(100) = '%' --Limit the POCO generation to specific table names | |
, @Tab CHAR(1) = CHAR(9) | |
, @IncludeValidationTags bit = 0 -- to output [Required] and maxLength validation attributes on properties | |
declare @tableName varchar(200) | |
declare @columnName varchar(200) | |
declare @nullable varchar(50) | |
declare @datatype varchar(50) | |
declare @maxlen int |
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"/> | |
<meta http-equiv="X-UA-Compatible" value="IE=9" /> | |
<title>Renters Mock UI</title> | |
<link rel="stylesheet" type="text/css" href="Resources/Styles/styles.css"/> | |
<script type="text/javascript" src="Resources/Scripts/jquery-1.7.1.min.js"></script> | |
<!--<script type="text/javascript" src="Resources/Scripts/jqHistory.js"></script>--> | |
<script type="text/javascript" src="Resources/Scripts/mockUI.js"></script> |