This repository has been archived by the owner on Jan 16, 2024. It is now read-only.
This repository has been archived by the owner on Jan 16, 2024. It is now read-only.
Closed
Description
I've upgraded from v1.3.0.4 to v1.3.0.11 and now get a compilation error due to following automated generated code change.
Previous line:
modelBuilder.Entity<global::QuickArchive.Data.Db.Keyword>().HasIndex(t => t.Name)
New line:
modelBuilder.Entity<global::QuickArchive.Data.Db.Keyword>().HasIndex("_Name")
When I change this back manually compilation works fine again.
And that's the property definition the code is generated from:
What's the reason for this code change that leads to a compilation error?