Take the community feedback survey now.
                AI OnAI Off
            
        Take the community feedback survey now.
 
                You cannot use x["PageMetaData"] when using EPiServer Find. You'll have to make the property strongly typed. Create a new property on your baseclass called MetaData (or whatever you want), and do something like this:
public string MetaData { get { return this["PageMetaData"] as string; } }
