hello
In whole system, If I delete an entity, It deletes completely from the database. But what I would like to do is, I dont want any entity to be deleted, I want to add a property, les say, IsDeleted Or IsPassive, whatever, so , when it is first created and not deleted, IsDeleted=false or IsPassive=false, when It is deleted , I want to set this property IsDeleted=true.
how would I accomplish it?
Do I have to create a custom IRepository? how?
Hello
how to get currentuser's tenantId?
hello
les say I have table named currency
Id -> int Value decimal -> 18,2 Name -> string.
The component creates default decimal value 18.2. My question is what is the right way to update decimal value from 18.2 to 18.4 ?
hello, my question is, is it a problem if I use dependency injection instance in the .application layer? Isn't the .application part backend?
merhaba sorunu sorum , .application katmanı içinde dependency injection instance alıp kullanmam bir sorun oluşturur mu? .application kısmı backend (arka taraf) değil mi?
Merhaba
Accidents isimli bir tablom var;
public AccidentsAppService(IRepository<Accident> accidentRepository, IAccidentsExcelExporter accidentsExcelExporter , IRepository<Personnel, int> lookup_personnelRepository, IRepository<Rank, int> lookup_rankRepository, **WCDDbContext dbContext**)
{
_accidentRepository = accidentRepository;
_accidentsExcelExporter = accidentsExcelExporter;
_lookup_personnelRepository = lookup_personnelRepository;
_lookup_rankRepository = lookup_rankRepository;
** _dbContext = dbContext;**
}
yukarıda görüldüğü gibi _dbContext instance sini aldım. bu şekilde çalıştırdığım zaman
HandlerException: Can't create component as it has dependencies to be satisfied. waiting for the following dependencies: which was not registered.
hatasını alıyorum . Sanırım dependency injection instance sini register yapmam lazım. nerede yapmalıyım?
merhaba
database de yüklüce güncelleme yaptım. isteğim, bu yaptığm değişiklik güncellemelere göre modal ın güncellenmesi. tüm db tabloları için scaffold generate komutu vs var mı?