You are working for a company that designs mobile applications. They maintain a server where player records are assigned to their different games. The tracking system is new and in development

HOTSPOT

You are working for a company that designs mobile applications. They maintain a server where player records are assigned to their different games. The tracking system is new and in development.

The application uses Entity Framework to connect to an Azure Database. The database holds a Player table and Game table.

When adding a player, the code should insert a new player record, and add a relationship between an existing game record and the new player record.

The application will call CreatePlayerWithGame with the correct gameIdand the playerId to start the process. (Line numbers are included for reference only.)

For each of the following statements, select Yes if the statement is true. Otherwise, select No. NOTE: Each correct selection is worth one point.

Answer:

Explanation:

Many-to-many relationships without an entity class to represent the join table are not yet supported. However, you can represent a many-to-many relationship by including an entity class for the join table and mapping two separate one-to-many relationships.

protected override void OnModelCreating(ModelBuilder modelBuilder)

{

modelBuilder.Entity<PostTag>()

HasKey(t => new { t.PostId, t.TagId });

modelBuilder.Entity<PostTag>()

HasOne(pt => pt.Post)

WithMany(p => p.PostTags)

HasForeignKey(pt => pt.PostId);

modelBuilder.Entity<PostTag>()

HasOne(pt => pt.Tag)

WithMany(t => t.PostTags)

HasForeignKey(pt => pt.TagId);

}

}

Latest AZ-204 Dumps Valid Version with 254 Q&As

Latest And Valid Q&A | Instant Download | Once Fail, Full Refund

Subscribe
Notify of
guest
0 Comments
Inline Feedbacks
View all comments