public static SqlDataTypeReference SqlDataType(SqlDataTypeOption option, params Literal[] parameters)
        {
            var fragment = new SqlDataTypeReference();

            fragment.SqlDataTypeOption = option;
            fragment.Parameters.AddRange(parameters);
            return(fragment);
        }
 public SqlDataTypeReference(ScriptDom.SqlDataTypeReference src) : base(src)
 {
     this.SqlDataTypeOption = (ModelSystemDataType)src.SqlDataTypeOption;
 }
Beispiel #3
0
 internal void ExplicitVisit(SqlDataTypeReference sqlDataTypeReference)
 {
 }
Beispiel #4
0
 public virtual void ExplicitVisit(SqlDataTypeReference sqlDataTypeReference)
 {
 }