I want to set up a DataSource with SelectParameters that use an OR where clause instead of an AND clause. Is this possible?
<llblgenpro:LLBLGenProDataSource2 ID="CustomerDataSource" runat="server">
<SelectParameters>
<asp:Parameter DefaultValue="True" Name="Rich" />
<asp:Parameter DefaultValue="True" Name="Stupid" />
</SelectParameters>
</llblgenpro:LLBLGenProDataSource2>
I want to get all the "Rich" customers and all the "Stupid" customers, not just the "Rich Stupid" customers.
Any ideas?