I want to show Components in a tabs , so first of all create few components. In this project we have three components, First View Component public class AllViewComponent : ViewComponent { private readonly UserManager<ApplicationUser> _userManager; public AllViewComponent(UserManager<ApplicationUser> userManager) { _userManager = userManager; } public async Task<IViewComponentResult> InvokeAsync() { List<StudentViewModel> allUsers = new List<StudentViewModel>(); var items = await _userManager.Users.ToListAsync(); foreach (var item in items) { allUsers.Add(new StudentViewModel {Id=item.Id, EnrollmentNo = item.EnrollmentNo, FatherName = item.FatherName, Name = item.Name, Age = item.Age, Birthdate = item.Birthdate, Address = item.Address, Gender = item.Gender, Email = item.Email }); }
MYSQL is used to store data permanently also MSACCESS is used. But both are different technology so today i will discuss about difference between both.
MYSQL
|
MSACCESS
|
Fully RDBMS
|
RDBMS
|
Large application
|
Small application
|
Multiple DB Engine
|
Single DB Engine
|
More ACID(Atomicity Consistency Integrity Durability) of transaction
|
Less ACID property of transaction
|
Easy referential Integrity
|
Hard Referential integrity
|
Open source
|
Product of Microsoft
|
License Free
|
License paid
|
Good Execution Speed
|
Poor Execution Speed
|
Good Performance
|
Poor performance
|
Platform Independent
|
Platform dependent
|
Hard Maintenance
|
Easy Maintenance
|
Comments
Post a Comment