This is a demonstration of GenericServices' database CRUD (Create, Read, Update/Edit and Delete) services done asynchronously, i.e. using Entity Framework 6's Async commands. Async commands are designed to free up the current thread while something outside the web server is running, in this case a database access. This should make the site able to handle more users, but the individual action takes a little bit longer. (See Posts for normal versions of the same commands).
Below you will see a table of posts which can be manipulated. We have chosen a POST as an example as it has the following attributes:
BloggerName | Title | Last updated | TagNames | |
---|---|---|---|---|
Yoni the cat | About Yoni the cat | 27/01/2021 | Edit | Details | Delete | |
Yoni the cat | Why I only have three legs | 27/01/2021 | Edit | Details | Delete | |
Yoni the cat | I might allow you to pet me... | 27/01/2021 | Edit | Details | Delete | |
Yoni the cat | The 17 things humans do that I find annoying | 27/01/2021 | Edit | Details | Delete |