Click here to Skip to main content
Licence CPOL
First Posted 3 Feb 2009
Views 17,208
Downloads 152
Bookmarked 26 times

Complex Parameter Support for ObjectDataSource

By | 3 Feb 2009 | Article
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: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)

About the Author

Steven James Gray

Software Developer (Senior)
Insurance Industry
United Kingdom United Kingdom

Member

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.

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
QuestionWhat About Update/Insert PinmemberMark Pierson8:47 19 Jun '09  
AnswerRe: What About Update/Insert PinmemberSteven James Gray18:13 11 Oct '09  
GeneralPostback behaviour Pinmemberbuehlert2:06 12 Feb '09  
GeneralRe: Postback behaviour Pinmemberbuehlert3:25 12 Feb '09  
GeneralRe: Postback behaviour PinmemberSteven James Gray8:53 12 Feb '09  
GeneralDataBinding Pinmember_phi_4:20 11 Feb '09  
Hi Steven,
 
your Complex Parameter Support is a great feature.
Do you have any experience with DataBinding, especially 2-way DataBinding?
 
In my case i've got a complex object and I would like to update its references.
Like Person & Address and I would like to update the Person's address by choosing one of several addresses out of a drop-down-list.
 
Best
- phi
GeneralRe: DataBinding PinmemberSteven James Gray8:55 12 Feb '09  

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

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

Permalink | Advertise | Privacy | Mobile
Web02 | 2.5.120604.1 | Last Updated 3 Feb 2009
Article Copyright 2009 by Steven James Gray
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid