How can I fix a many to many relationship between two entities so that the third table is filled automatically in entity framework and web API (C#)

So I have a Customer entity and a Movie entity and I configured the many to many relationship correctly and EF created the third table CustomerMovie with two FK’s being CustomerId and MovieId both being the primary key. so now when I started creating the endpoints and it was all fine until I got to the AddMovie endpoint which adds a new movie to the database, it works but the table CustomerMovie is empty while it should have the CustomerId of the customer who added the movie and the MovieId of the movie that was added, so not sure if the endpoint implementation is wrong so far as to reach this goal or is the configuration wrong.

This my endpoint implementation

 [HttpPost("AddMovie"), Authorize]
 public ActionResult<Movie> AddMovie([FromBody] MovieDto movie)
 {
     if (movie == null || !ModelState.IsValid)
     {
         return BadRequest(ModelState);
     }

     if (_movieRepository.CheckMovieByTitle(movie.Title))
     {
         ModelState.AddModelError("", "Movie Already exists, if both share the same name add the release year with the name");
         return StatusCode(422, ModelState);
     }
     var userEmail = User.FindFirstValue(ClaimTypes.Email);
     Customer customerAdded = _customerRepository.GetCustomerByEmail(userEmail);
     Movie addedMovie = _movieRepository.AddMovie(movie, userEmail, customerAdded);
     
     return Ok(addedMovie);
 }

and this is what’s in the repository class(I’m using repository pattern)

 public Movie AddMovie(MovieDto movie, string email, Customer customerAdded)
 {
     Movie newMovie = new Movie

     {
         Title = movie.Title,
         Description = movie.Description,
         Duration = movie.Duration,
         ReleaseDate = movie.ReleaseDate,
         Rating = 0,
         AddedByUser = email
     };

     _context.Movie.Add(newMovie);

     Save();
     return newMovie;
 }

as for the configuration of the relationship this the context:

 public class ClassContextDb : DbContext
 {
     public ClassContextDb(DbContextOptions<ClassContextDb> options) : base(options)
     {
     }
     public DbSet<Customer> Customer { get; set; }
     public DbSet<Movie> Movie { get; set; }
     public DbSet<Genre> Genre { get; set; }

     public DbSet<MembershipType> MembershipType { get; set; }

     protected override void OnModelCreating(ModelBuilder modelBuilder)
     {

         base.OnModelCreating(modelBuilder);

         modelBuilder.Entity<Customer>()
          .HasMany(c => c.Movie)
          .WithMany(m => m.Customer)
          .UsingEntity(j => j.ToTable("CustomerMovie"));
             


     }
 }

and these are the properties in the models themselves:
public virtual ICollection Movie { get; set; } = new List(); //in Customer class
public virtual ICollection Customer { get; set; } = new List(); // in Movie class

New contributor

Yazeed Fayoumi is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.

Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa Dịch vụ tổ chức sự kiện 5 sao Thông tin về chúng tôi Dịch vụ sinh nhật bé trai Dịch vụ sinh nhật bé gái Sự kiện trọn gói Các tiết mục giải trí Dịch vụ bổ trợ Tiệc cưới sang trọng Dịch vụ khai trương Tư vấn tổ chức sự kiện Hình ảnh sự kiện Cập nhật tin tức Liên hệ ngay Thuê chú hề chuyên nghiệp Tiệc tất niên cho công ty Trang trí tiệc cuối năm Tiệc tất niên độc đáo Sinh nhật bé Hải Đăng Sinh nhật đáng yêu bé Khánh Vân Sinh nhật sang trọng Bích Ngân Tiệc sinh nhật bé Thanh Trang Dịch vụ ông già Noel Xiếc thú vui nhộn Biểu diễn xiếc quay đĩa Dịch vụ tổ chức tiệc uy tín Khám phá dịch vụ của chúng tôi Tiệc sinh nhật cho bé trai Trang trí tiệc cho bé gái Gói sự kiện chuyên nghiệp Chương trình giải trí hấp dẫn Dịch vụ hỗ trợ sự kiện Trang trí tiệc cưới đẹp Khởi đầu thành công với khai trương Chuyên gia tư vấn sự kiện Xem ảnh các sự kiện đẹp Tin mới về sự kiện Kết nối với đội ngũ chuyên gia Chú hề vui nhộn cho tiệc sinh nhật Ý tưởng tiệc cuối năm Tất niên độc đáo Trang trí tiệc hiện đại Tổ chức sinh nhật cho Hải Đăng Sinh nhật độc quyền Khánh Vân Phong cách tiệc Bích Ngân Trang trí tiệc bé Thanh Trang Thuê dịch vụ ông già Noel chuyên nghiệp Xem xiếc khỉ đặc sắc Xiếc quay đĩa thú vị
Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa
Thiết kế website Thiết kế website Thiết kế website Cách kháng tài khoản quảng cáo Mua bán Fanpage Facebook Dịch vụ SEO Tổ chức sinh nhật