Example #1
0
 internal static async Task ClearTeamsTable()
 {
     using (var context = new SyncDbContext())
     {
         await context.Database.ExecuteSqlRawAsync("TRUNCATE TABLE TeamsTable");
     }
 }
Example #2
0
 internal static async Task ClearResourcesAsync()
 {
     using (var context = new SyncDbContext())
     {
         await context.Database.ExecuteSqlRawAsync("TRUNCATE TABLE Resources");
     }
 }
Example #3
0
 public static IList <TeamTable> GetTeams(int limit)
 {
     using (var context = new SyncDbContext())
     {
         return(context.TeamsTable.OrderBy(o => o.CreatedDateTime).Take(limit).ToList());
     }
 }
Example #4
0
 public static async Task UpdatePerformanceAsync(Performance per)
 {
     using (var context = new SyncDbContext())
     {
         context.Performances.Update(per);
         await context.SaveChangesAsync();
     }
 }
Example #5
0
 public static async Task UpdateSourcesAsync(Source source)
 {
     using (var context = new SyncDbContext())
     {
         context.Sources.Add(source);
         await context.SaveChangesAsync();
     }
 }
Example #6
0
 public static async Task AddExceptionsAsync(IList <Exceptions> exceptions)
 {
     using (var context = new SyncDbContext())
     {
         context.Exceptions.AddRange(exceptions);
         await context.SaveChangesAsync();
     }
 }
Example #7
0
 public static async Task UpdateResourcesAsync(IList <Resource> resources)
 {
     using (var context = new SyncDbContext())
     {
         context.Resources.AddRange(resources);
         await context.SaveChangesAsync();
     }
 }
Example #8
0
 public static async Task AddTeamsToTable(IList <TeamTable> teams)
 {
     using (var context = new SyncDbContext())
     {
         context.TeamsTable.AddRange(teams);
         await context.SaveChangesAsync();
     }
 }
Example #9
0
 private static async Task UpdateDbAsync()
 {
     using (var context = new SyncDbContext())
     {
         context.Resources.AddRange(resources);
         await context.SaveChangesAsync();
         resources= resources = new List<Resource>();
     }
 }
Example #10
0
 internal static int GetAverageSync()
 {
     try
     {
         using (var context = new SyncDbContext())
         {
             return((int)context.Resources.ToList().Where(w => w.TimeDif < 50).Average(a => a.TimeDif));
         }
     }
     catch { return(0); }
 }