コード例 #1
0
 public static SqlObject Create(string schema, string name, string type, int id, int parentId, SqlSubType subType)
 {
   return new SqlObject()
   {
     Schema = schema,
     Name = name,
     Type = type,
     Id = id,
     ParentId = parentId,
     SubType = subType
   };
 }
コード例 #2
0
 public static SqlObject Create(string schema, string name, string type, int id, int parentId, SqlSubType subType)
 {
     return(new SqlObject()
     {
         Schema = schema,
         Name = name,
         Type = type,
         Id = id,
         ParentId = parentId,
         SubType = subType
     });
 }