Hello! How to display information in the table weekly and separately for each day using angularjs. Those. Clicking for example on the "Next day / week" table displays the next week or day. Googled all day and did not find information on how to iterate over the date in case of a day.
public class Game { public int Id { get; set; } public string Name { get; set; } public virtual ICollection<Gamer> Gamers { get; set; } public Game() { Gamers = new List<Gamer>(); } } public class Gamer { public int Id { get; set; } public string Name { get; set; } public int MaxScore { get; set; } public DateTime GamerDate { get; set; } public virtual ICollection<Game> Games { get; set; } public Gamer() { Games = new List<Game>(); } } public class LeaderBordContext : DbContext { public DbSet<Gamer> Gamers { get; set; } public DbSet<Game> Games { get; set; } public LeaderBordContext() : base("DefaultConnection") { } }