blipson89 / Synthesis

Synthesis is a universal object mapper for Sitecore
MIT License
75 stars 25 forks source link

IHyperLinkField RenderWithBody usage #86

Closed Chrlol closed 5 years ago

Chrlol commented 5 years ago

BeginHyperlinkFor is Obsolete, it says to use RenderWithBody instead. I have been unable to find any examples of usage anywhere, can someone provide me with an example of usage?

blipson89 commented 5 years ago
@using (Model.<linkfield name>.RenderWithBody(Html))
{
    <span>
        @Model.<linkfield name>.Text
    </span>
}