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
After I upgrade my dotnet core 2.2 MVC application to 3.0.0-preview7-27912-14, my custom razor html extesion can not find "Microsoft.AspNetCore.Mvc.ViewFeatures.Internal".
And, after "Microsoft.AspNetCore.Mvc.ViewFeatures.Internal" can not find , here is some function I can not use , such as ExpressionHelper and ExpressionMetadataProvider.
We addressed this particular gap as part of aspnet/Mvc#8724. 3.0 offers a ModelExpressionProvider type that's available from DI and combines the 3 APIs that were previously available:
The latter two return an instance of ModelExpression which is a superset for ModelExplorer that ExpressionMetadataProvider returns. aspnet/Mvc#8724 (comment) has a suggestion for libraries that need to support different versions of AspNetCore.
After I upgrade my dotnet core 2.2 MVC application to 3.0.0-preview7-27912-14, my custom razor html extesion can not find "Microsoft.AspNetCore.Mvc.ViewFeatures.Internal".
And, after "Microsoft.AspNetCore.Mvc.ViewFeatures.Internal" can not find , here is some function I can not use , such as ExpressionHelper and ExpressionMetadataProvider.
Here is my example github url : https://github.com/Benknightdark/dotnetcore3v7
The text was updated successfully, but these errors were encountered: