Click here to Skip to main content
15,881,172 members
Articles / Web Development / ASP.NET

Complex Parameter Support for ObjectDataSource

Rate me:
Please Sign up or sign in to vote.
4.64/5 (6 votes)
3 Feb 2009CPOL2 min read 40.2K   310   26   7
An example showing how to create a custom parameter for ASP.NET data sources that allows the passing of arbitrarily complex objects.

Introduction - Object Data Sources with Object Parameters

The built in ASP .NET data-source model comes with support for a variety of parameter types, allowing us to feed our applications, used via data sources such as SqlDataSource, XmlDataSource and ObjectDataSource. The built in parameters however are fairly limited, in that you cannot build complex object structures, and must have all types resolve to a handful of simple types such as strings and integers. The closest ASP.NET allows us is that it automatically constructs some types when performing an Update or Delete, but there is no such support for Select's.

This example code shows how to build arbitrary objects as inputs to ObjectDataSources, by means of a custom parameter type, ObjectParameter. The ObjectParameter creates an instance of a specified type and then evaluates a set of parameter objects in order to populate the properties of the object. Visually this appears somewhat like:

ObjectParameter-Code

When translated to ASP.NET, this appears as:

ASP.NET
<asp:ObjectDataSource ID="ObjectDataSource1" runat="server"
    SelectMethod="SearchEntities"
    TypeName="CobaltSoftware.ExampleBusinessLayer.SomedataObject,
         CobaltSoftware.ExampleBusinessLayer">
    <SelectParameters>
        <Cobalt:ObjectParameter Name="input"

           TypeName="CobaltSoftware.ExampleBusinessLayer.SearchParametersEntity,
           CobaltSoftware.ExampleBusinessLayer" >
            <Properties>
                <asp:ControlParameter ControlID="TxtForename" name="Forename" />
                <asp:ControlParameter ControlID="TxtSurname" name="Surname" />
                <asp:ControlParameter ControlID="TxtAge" name="MinAge" />
            </Properties></properties />
        </Cobalt:ObjectParameter>
    </SelectParameters>

In this example, we're constructing a simple search parameters type entity, which fetches its state from various elements on the page. An instance of SearchParametersEntity is created (using the default constructor) and then each of the property parameters are evaluated and applied to the properties of the object.

How Does It Work?

The way the code works is as follows:

  • ASP.NET evaluates the arguments group for the data source by calling Evaluate on the ParameterCollection. This returns a dictionary of name to value mappings for each evaluated parameter.
  • When the ParameterCollection is evaluating the ObjectParameter, we look at the value of the TypeName attribute and instantiate the appropriate type dynamically.
  • The ObjectParameter has its own ParameterCollection (the 'Properties' property) that is evaluated.
  • We map each of the returned values from the Properties ParameterCollection onto the properties of the activated type through reflection.

Points to Note

  • Always implement a ToString() on objects you create for parameters, as ASP.NET uses the ToString() value for the caching key when you enable caching on data sources.
  • You can nest these arbitrarily to build up insanely large and complex object trees if you so desire.
  • You can use any number of these to allow calling of code that requires multiple complex parameter inputs as arguments.
  • Please ensure that you add the 'tagprefix' element to your web.config to register the parameter if you try referencing the library from your own code.

Revision History

  • 3rd Februrary, 2009 - Initial submission to CodeProject

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior) Insurance Industry
United Kingdom United Kingdom
Steve Gray is a Senior Developer at a British insurance company, working on a popular aggregator. When he's not writing ASP .NET, it's because there's SQL or WCF to write instead.

Comments and Discussions

 
QuestionWhat About Update/Insert Pin
Mark Pierson19-Jun-09 8:47
Mark Pierson19-Jun-09 8:47 
AnswerRe: What About Update/Insert Pin
Steven James Gray11-Oct-09 18:13
Steven James Gray11-Oct-09 18:13 
GeneralPostback behaviour Pin
buehlert12-Feb-09 2:06
buehlert12-Feb-09 2:06 
Thanks for this great component, it works like a charm.
I have one question concerning the behaviour of complex parameters within object datasources during postbacks.
I set e.g. some parameters (also the complex) in the Page_load event when the page is loaded the first time. Once there is a postback, I expect that all parameters are still available (they are for elementary data types). But the complex data types are NULL then.
Is there a hint or did I implement anything wrong?
Thanks in advance.

Annotation:
I used the "ActivatedInstance" property of the object parameter in the Page_Load event to set the desired object instance.
GeneralRe: Postback behaviour Pin
buehlert12-Feb-09 3:25
buehlert12-Feb-09 3:25 
GeneralRe: Postback behaviour Pin
Steven James Gray12-Feb-09 8:53
Steven James Gray12-Feb-09 8:53 
GeneralDataBinding Pin
_phi_11-Feb-09 4:20
_phi_11-Feb-09 4:20 
GeneralRe: DataBinding Pin
Steven James Gray12-Feb-09 8:55
Steven James Gray12-Feb-09 8:55 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.