I have table structure where I have 1 to 1 relationship (Document-File) in which File has blob and I load it only when needed/lazy load.
To delete entity I need to run following:
1. File.EntityAspect.Delete()
2. EntityManager.SaveAsync()
So, to delete Document and File I need to load both entities. Generated SQL doesn't need all the data, it runs deletion by Document.FileKey anyway..
Anyway to skip loading File entity if I just want to delete?