コード例 #1
0
ファイル: TableSchema.cs プロジェクト: AyreYang/Workflow
 internal void FillDeleteScriptCollection(SQLScriptCollection collection)
 {
     if (collection == null)
     {
         throw new ArgumentNullException("collection");
     }
     collection.Clear();
     FillDeleteScript(collection);
 }
コード例 #2
0
ファイル: TableSchema.cs プロジェクト: AyreYang/Workflow
 internal void FillFreshScriptCollection(SQLScriptCollection collection)
 {
     if (collection == null)
     {
         throw new ArgumentNullException("collection");
     }
     collection.Clear();
     FillSelectScript(null, 0, collection);
 }