What are all the tables in the Aspnetdb database used for?

I read about how to do memebership, roles and profiles in asp.net, and they all seem very easy, but there is one thing that all the tutorials and books that I seem to have forgotten to talk about.

The database generated by asp.net has several tables that I have no idea what they are used for.

I was surprised if anyone could explain to me that each table in "aspnetdb" is used for

early

+4
source share
2 answers

The explanation for this here would be a bit long. Take a look at the MSDN documentation here .

In total, the article contains 8 parts. Each of them describes that each table is used both from a high level and from a more detailed level.

+7
source

He used to host the data used by the default membership provider / roles / profiles by default. You could find out the details (this is not a complicated scheme), but good design principles say that you should treat it like a black box and not touch it directly - only touch it through the membership / role / profile API. Do not rely on Microsoft to retain its internal implementation data in the future.

+1
source

Source: https://habr.com/ru/post/1344327/


All Articles