Fading Coder

One Final Commit for the Last Sprint

Preventing Duplicate Child Entity Insertion During Batch Imports in ABP and Entity Framework

During bulk data ingestion, multiple parent records frequently reference identical dependent entities. When processing these records sequentially, naive instantiation logic can inadvertently create redundant child objects. Consider an import routine where academic papers reference contributing autho...

Implementing Hierarchical Data Import and Export with Spring Boot, MyBatis Plus, and EasyExcel

This implementation demonstrates handling hierarchical data, such as product categories and subcategroies, using a relasional database. The primary category (e.g., 'Rifle') acts as the parent, and the secondary category (e.g., 'AK-47') is the child, which also contains a description. Database Schema...