You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Same problem here but I just don't have any uint anywhere in my models, only int32 and int64.
Of course there was an unseen uint in a mapped record:
public record DatabaseInfoEntity(
[property: Key, Column("oid", TypeName = "oid")] uint ObjectId,
[property: Column("datname")] string DbName,
[property: Column("description")] string? Description)
Removed this one and now a compiled model gets created - but it doesn't compile due to private nested classes being referenced: #2972
(and I can't change the class as it comes from IdentityFramework: property DateTimeOffSet? LockoutEnd in user entity)
roji
added a commit
to roji/efcore.pg
that referenced
this issue
Dec 18, 2023
I have some entities with a uint concurrency token, mapped to the
xmin
system column, for example:I have upgraded to 8.0. When I run
Optimize-DbContext
to compile the context, I get the following exception:It was working fine on 7.0.
The text was updated successfully, but these errors were encountered: