Bummer! This is just a preview. You need to be signed in with an account to view the entire instruction.
- Overview of Segmenting and Protecting Data 1:52
- Segmenting Data
- Updating the Database Seed Data
- Updating the Entries Repository
- Updating the Entries List Page
- Protecting User Data
- Securing Communication Between the Client and Server
- Preventing Cross-Site Request Forgery (CSRF)
- Reviewing Segmenting and Protecting Data 6:49
- Wrap Up 1:57
- Section Review 5 questions
Well done!
You have completed User Authentication with ASP.NET Identity!
Instruction
Segmenting Data
In this step, we'll update our Entity Framework data model in order to segment our entries data by user.
> The Activity model/table contains a set of global values that every user needs to be able to access, so we don't need to associate activities with users.
Reviewing Our Database
Let's start with reviewing how Identity is storing users in our database. To do that, open the SQL ...