-
Book Overview & Buying
-
Table Of Contents
-
Feedback & Rating

Mastering Entity Framework Core 2.0
By :

The knowledge we gained about concurrency tokens and how the implementation was performed in the EF Core Framework would be useful in introducing concurrency tokens in this section.
Introducing the usages of concurrency tokens would be a meager topic, so we will implement them in the blogging system and see them in action. After all, talking about algorithms and scenarios would not be sufficient. In order to understand and grasp the topic, we need to handle them in action, so let's do it.
The concurrency token could be configured in the following ways:
We will see how the configurations were performed using both the approaches in our blogging system in the next two sections.
The data annotation configuration is straightforward; we have already seen the annotation in the Introducing concurrencytokens section of this chapter and it is not something new to us. Let's see how the...