We are building a aspx page sidebar navigation menu (MS CRM 2011 Customer Portal) that needs to get a reference to the current entity that called the page.Initially we thought we could use a CRM Property and bind it to a parameter in a LinqDatasource:crmroperty DataSourceID="CurrentEntity" PropertyName="adx_name" runat="server"(The current entity would be an adx_webpage)then do something like this:asp:LinqDataSource ID="individpagecontent" ContextTypeName="Xrm.XrmServiceContext" TableName="new_programmeSet" Where="new_name == @ADX_NAME PARAMETER FROM ABOVE"but this failed with a syntax error... Has anyone done something similar and able to provide a guiding hand?Thank you, much appreciated.