Replies: 1 comment 1 reply
-
|
Hello, I hit a similar issue recently. As a workaround I created a separate |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
My project uses virtual reference properties, I can't redo them.
public class WaggonReceive { public long WaggonReceiveId { get; set; } public long? StationSendId { get; set; } public virtual Station? StationSend { get; set; } public long PlcId { get; set; } public virtual Plc Plc { get; set; } = null!; public virtual ICollection<WaggonDispatch>? WaggonsDispatch { get; set; } }I get an error when creating the migration.
The error occurs because TickerQ entities do not meet the requirements of the Entity Framework for using lazy loading and proxy tracking of changes. You must disable these functions for TickerQ entities or exclude them from the proxy configuration. How to do it?
Beta Was this translation helpful? Give feedback.
All reactions