One of my questions is closed due to insufficient information so I written another with detail.
I want to write a blazor app in c# & .netCore plateform using Visual Studio 2022.
Such app will be operated as Inventory/Financial Management System, CRM, HRM etc. so this system is based on more than 30 tables where the date will be saved via CRUD operation.
Here the question is how I can implement single CRUD for all these tables like same UpdateTable function (with parameters) will be usable to update the tables like Customer, Supplier, Products etc in my database.
something like below..
function DbSet UpdateTable(DbSet tableName)
{
_context.Update(tableName);
}
Actually this will help me save my time to write several lines of code /(I mean writing CRUD) for each and every table
thanks in advance