-
Notifications
You must be signed in to change notification settings - Fork 3.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Create a read-optimized implementation of IModel #24364
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@@ -1411,6 +1412,9 @@ | |||
<data name="SkipNavigationWrongType" xml:space="preserve"> | |||
<value>The skip navigation '{navigation}' cannot be removed from the entity type '{entityType}' because it is defined on the entity type '{otherEntityType}'.</value> | |||
</data> | |||
<data name="SlimModelMissingData" xml:space="preserve"> | |||
<value>The requested configuration is not stored in the read-optimized model, please use 'DbContext.DesignTimeModel'.</value> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
<value>The requested configuration is not stored in the read-optimized model, please use 'DbContext.DesignTimeModel'.</value> | |
<value>The requested configuration is not stored in the slim model, please use 'DbContext.DesignTimeModel'.</value> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think the original has more meaning
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
OK, but shouldn't we be consistent between our messages and the actual type naming etc.?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sure, but I don't want to name the type ReadOptimizedModel
Part of #8258