OpenSource » Database Migrator » Migrator2
Clone URL:  

Migrator adding the Google Chart Sharp API source.

Changeset f9c89888f620

Parent ea784fee4395

by gareth.farrington

Changes to 2 files · Browse files at f9c89888f620 Showing diff from parent ea784fee4395 Diff from another changeset...

 
34
35
36
 
37
38
39
 
34
35
36
37
38
39
40
@@ -34,6 +34,7 @@
  <DefineConstants>DEBUG;TRACE</DefineConstants>   <ErrorReport>prompt</ErrorReport>   <WarningLevel>4</WarningLevel> + <DocumentationFile>bin\Migrator\Debug\Migrator.XML</DocumentationFile>   </PropertyGroup>   <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">   <DebugType>pdbonly</DebugType>
 
206
207
208
209
 
210
211
212
 
 
213
214
215
 
220
221
222
 
 
 
 
 
223
224
225
 
206
207
208
 
209
210
 
 
211
212
213
214
215
 
220
221
222
223
224
225
226
227
228
229
230
@@ -206,10 +206,10 @@
  /// </summary>   /// <param name="name">Constraint name</param>   /// <param name="foreignKeyTable">Table to add the constraint to. Usually the table with the reference to an Entity in another table.</param> - /// <param name="ForeignKeyColumn">The Foreign Key column name</param> + /// <param name="foreignKeyColumns">The Foreign Key columns name</param>   /// <param name="entityTableName">The table that contains the Entity the Foreign Key references</param> - /// <param name="primaryKeyColumns">The Primary Key column in the Entity table</param> - /// <param name="cascade"></param> + /// <param name="primaryKeyColumns">The Primary Key columns in the Entity table</param> + /// <param name="cascade">What Cascading should be performed</param>   public virtual void AddForeignKey(string name, string foreignKeyTable, string[] foreignKeyColumns, string entityTableName, string[] primaryKeyColumns, CascadeBehavior cascade)   {   throw new NotImplementedException(); @@ -220,6 +220,11 @@
  /// AddForeignKey(string, string, string, string, string)   /// </see>   /// </summary> + /// <param name="name">Constraint name</param> + /// <param name="foreignKeyTable">Table to add the constraint to. Usually the table with the reference to an Entity in another table.</param> + /// <param name="foreignKeyColumns">The Foreign Key columns name</param> + /// <param name="entityTableName">The table that contains the Entity the Foreign Key references</param> + /// <param name="primaryKeyColumns">The Primary Key columns in the Entity table</param>   public abstract void AddForeignKey(string name, string foreignKeyTable, string[] foreignKeyColumns, string entityTableName, string[] primaryKeyColumns);     /// <summary>