This question is locked. New answers and comments are not allowed.
Hello
I am actaully testing OA Orm together with asp.net controls making very basic things. Actually what is the fastest way to manually retreive the data after a query has been performed?
As a matter of example:
After the parameters are passwed I would like to:
I am actaully testing OA Orm together with asp.net controls making very basic things. Actually what is the fastest way to manually retreive the data after a query has been performed?
As a matter of example:
<telerik:OpenAccessDataSource ID="OpenAccessDataSource1" runat="server" EnableDelete="False" EnableInsert="False" EnableUpdate="False" ObjectContextProvider="TelerikTest.TelerikTestEntityDiagrams, TelerikTest" TypeName="TelerikTest.User" Where="Username == @Username AND Password == @Password"> <WhereParameters> <asp:ControlParameter ControlID="username" Name="Username" PropertyName="Text" /> <asp:ControlParameter ControlID="password" Name="Password" PropertyName="Text" /> </WhereParameters> </telerik:OpenAccessDataSource>After the parameters are passwed I would like to:
- Verify if record exists;
- write a db value from the query in a label
Any help would be appreciated.
Giuseppe