EF core 3.1 – common table for entity and owned type

I’m trying to implement DDD approach in my project but realized that I have too big aggregates and trying to minimize the amount of data loaded from the database. I have an aggregate Order which during some operations depends on another aggregate- Company. To perform operation RefreshOrderNumber() I need three properties from the Company entity and totally not interested in other fields from the **Company. So, I got an idea to create a value type for Order – OrderCompanyInfo and incapsulate those fields on it