ghd258
ghd258
方案一:按租户字段区分 此方案要求每个业务表包含 TenantId 字段,以便区分不同租户。假设当前租户值为 1: 查询时 自动附加条件 where TenantId = 1 插入时 自动赋值 TenantId = 1 更新时 自动附加条件 where TenantId = 1,防止修改其他租户的数据 删除时 自动附加条件 where TenantId = 1,防止删除其他租户的数据 方案二:按租户分表 此方案要求每个租户对应不同的数据表,如...
support for net 5
update net core 3.0
Support Blazor WebAssembly and Blazor Server
Using core 3.0 AssemblyLoadContext to Implement Plug-in Hot Loading
支持 blazor
更新到net6
I'm working on that. 2 problems now: how to invalidate view cache after application part is added at runtime and how to reconfigure endpoints and routes at runtime.