Split Entity mapping producing unexpected results with oracle database
问题 i am currently using the following mapping to map a split entity and is producing unexpeted results it is trying to map a table public class TestResultMap : EntityTypeConfiguration { public TestResultMap() { #region Property => Column Mapping //test table Property(e => e.Id) .HasColumnName("TEST_NUMBER"); Property(e => e.Analysis) .HasColumnName("ANALYSIS"); Property(e => e.ComponentList) .HasColumnName("COMPONENT_LIST"); Property(e => e.Status) .HasColumnName("STATUS"); //result table