Separate Asp.Net Context Context and Application Context

1

I'm creating a repository using the Entity Framework, and the need arose for my entities to communicate with the IdentityUser entity of Identity, but Identity is in a separate layer of my application layer.  Is it possible to create two contexts (that of Identity and that of my application) that allow this navigation relationship between objects?

    
asked by anonymous 16.06.2017 / 04:09

1 answer

0

It is possible, but not necessary, you can use the project with Identity as reference in the project that needs information from it. Below is a video of Eduardo Pires explaining the separation of Identity:

link

    
24.06.2017 / 01:46