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
{{ message }}
This repository was archived by the owner on Dec 19, 2018. It is now read-only.
For @model LoginViewModel we generate using TModel = LoginViewModel. This is invalid, the type has to be fully qualified in the using statement but not in the model statement. Instead we should have the TModel always use System.Object.
The text was updated successfully, but these errors were encountered:
- Prior to this TModel would be set to a potentially non-fully qualified name. This would cause errors in default MVC templates.
- Regenerated test files to reflect new TModel.
- Updated unit test to reflect new behavior.
#1222
- Prior to this TModel would be set to a potentially non-fully qualified name. This would cause errors in default MVC templates.
- Regenerated test files to reflect new TModel.
- Updated unit test to reflect new behavior.
#1222
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
For
@model LoginViewModel
we generateusing TModel = LoginViewModel
. This is invalid, the type has to be fully qualified in the using statement but not in the model statement. Instead we should have theTModel
always use System.Object.The text was updated successfully, but these errors were encountered: