| 123456789101112131415161718 |
- using Microsoft.EntityFrameworkCore;
- namespace VberZero.EntityFramework;
- [Abp.MultiTenancy.MultiTenancySide(Abp.MultiTenancy.MultiTenancySides.Tenant)]
- public abstract class VzTenantDbContext<TSelf> : VzCommonDbContext<TSelf>
- where TSelf : VzTenantDbContext<TSelf>
- {
- /// <summary>
- ///
- /// </summary>
- /// <param name="options"></param>
- protected VzTenantDbContext(DbContextOptions<TSelf> options)
- : base(options)
- {
- }
- }
|