public async Task AppDbContext()
 {
     TestCode
     (
         AppDbContextGenerator.GetFileName(await GetSchema()),
         AppDbContextGenerator.Get(await GetSchema(), AppNamespace)
     );
 }
 public async Task JoinEntityDbContext()
 {
     foreach (var relationship in (await GetSchema()).GetRelationshipSettings())
     {
         TestCode
         (
             AppDbContextGenerator.GetManyToManyEntityDbContextFileName(relationship),
             AppDbContextGenerator.GetManyToManyEntityDbContext(relationship, AppNamespace)
         );
     }
 }