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

GridView ObjectDataSource Adapter

Rate me:
Please Sign up or sign in to vote.
3.67/5 (6 votes)
2 Feb 20073 min read 58.7K   319   29  
In this brief article, the author mentions two techniques that he uses to allow for mapping GridViews to DataTables that are built upon existing middle tier objects.
Imports Microsoft.VisualBasic

Public Class EmployeeController

    ''' <summary>
    ''' Genric method to be used to get employees as a DataTable.  We map
    ''' our objectdatasource to this method,
    ''' </summary>
    ''' <returns>DataTable of Employees</returns>
    ''' <remarks></remarks>
    Function GetEmployeesAsTable() As System.Data.DataTable
        Try
            Dim myObject As New BLL.EmployeeLogic
            Dim myEmployees As IList
            myEmployees = myObject.RetrieveMany(Nothing)
            Return myObject.ConvertToDataTable(myEmployees, GetType(IModelLayer.IEmployee))
        Catch ex As Exception
            Throw New Exception("Error Get Employees", ex)
        End Try
        Return Nothing
    End Function

    Function GetEmployees() As IList
        Try
            Dim myObject As New BLL.EmployeeLogic
            Return myObject.RetrieveMany(Nothing)
        Catch ex As Exception
            Throw New Exception("Error Get Employees", ex)
        End Try
        Return Nothing
    End Function
End Class

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions