Long names of properties (Entity Framework)
Posted: Sun 17 Jun 2018 06:00
Hi I am evaluating the dotConnect for Oracle - Entity Framework and I encountered a problem with long names of class properties(resp. column names)
I have this class and table:
I call:
The query that EF generates:
Column "LongerNameThanEFCanHandle1234567" is named as R1.
Is there some limitation for length of column?
Thank you
I have this class and table:
Code: Select all
public class TestTable {
public Guid Id { get; set; }
public Guid LongerNameThanEFCanHandle1234567
}
Code: Select all
Db dbContext = CreateDbContext();
dbContext.Set<TestTable>.Load();
Code: Select all
SELECT
Extent1.ID,
Extent1.R1,
FROM TESTTABLE Extent1
Is there some limitation for length of column?
Thank you