开发者

How come internal members in my view model aren't accessible in the view?

开发者 https://www.devze.com 2023-02-28 23:01 出处:网络
I have some internal automatic properties in开发者_JAVA技巧 my view model but my strongly-typed view doesn\'t see them.Everything is in the same assembly, so why is this happening?

I have some internal automatic properties in开发者_JAVA技巧 my view model but my strongly-typed view doesn't see them. Everything is in the same assembly, so why is this happening?

public class MyViewModel {
    public   int PublicProperty { get; set; }
    internal int InternalProperty   { get; set; }
}

.

@*My view*@
@model MyViewModel

@Model.PublicProperty

@Model.InternalProperty @*Causes compilation error*@


Views are compiled in a separate dynamically generated assembly by the ASP.NET runtime. So you cannot use internal properties. You could of course still have internal properties on your model but once you map them to the view model there will be no problem as you should always be passing a view model to the view anyways.

Conclusion: always use only public properties on your view models.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号