I am data binding to many FormView controls using EF entity instances, but I have to resort to this ridiculous kludge in order to achieve what I want without using EntityDataSource controls:

propertyHeaderSection.DataSource = new List<PropertyDetailsModel> { _propertyDetails };

I suspect I will have to derive my own control from FormView and enable it to accept an almost POCO as a data source. Where do I start?

link|improve this question

Please you have to provide the existing code that didn't worked up for you so that it will be easy to help you in this.. – Harsh Baid Oct 1 '11 at 5:15
Assuming _propertyDetails is Ienumerable or Iqueryable, how about just using System.Linq and calling _propertyDetails.ToList(); – Ragzitsu Oct 3 '11 at 12:53
If _propertyDetails was already IEnumerable, then there would not be a problem -- DataSource will accept IEnumerable types. – patmortech Oct 3 '11 at 14:50
Are you opposed to using an ObjectDataSource? – Joel C Oct 4 '11 at 14:08
feedback

2 Answers

up vote 0 down vote accepted

This is my implementation, sort of the same idea as patmortech, but i also found out that the ValidateDataSource method on the BaseDataBoundControl is what throws the exception at run-time if your datasource isn't enumerable.

public class CustomFormView : System.Web.UI.WebControls.FormView
    {
        public override object DataSource
        {
            get
            {
                if (!(base.DataSource is IEnumerable))
                    return new[] {base.DataSource};

                return base.DataSource;
            }
            set
            {
                base.DataSource = value;
            }
        }

        // This method complains at run time, if the datasource is not 
        // IListSource, IDataSource or IEnumerbale
        protected override void ValidateDataSource(object dataSource)
        {
            //base.ValidateDataSource(dataSource);
        }
    }

EDIT:

Considering the suggestion, i've made some changes to the way i check if the assigned DataSource is enumerable or not. I have also managed to create a sample app (VS 2010 Solution) to demo the changes. The app can be downloaded from http://raghurana.com/blog/wp-content/attachments/FormViewDataProblem.zip

In short this is what i am checking to ensure that the existing datasource can be enumerated already or not:

public static bool CanEnumerate( this object obj )
    {
        if (obj == null) return false;

        Type t = obj.GetType();

        return t.IsArray ||
               t.Implements(typeof (IEnumerable).FullName) ||
               t.Implements(typeof (IListSource).FullName) ||
               t.Implements(typeof (IDataSource).FullName);
    }

Please feel free to suggest more changes, if this isnt quite the desired functionality. Cheers.

link|improve this answer
One thing to note with this, is that I don't think it would work when bound to DataSource controls (ObjectDataSource, SQLDataSource), because you would be turning them into an array also. I know the intention is to do without these, but it would mean you could not re-use your custom control in all cases in the app. If you add in checks for IListSource and IDataSource (as happens in the base ValidateDataSource), then it would work properly for everything. – patmortech Oct 4 '11 at 5:57
feedback

Not sure it's the best idea in the world, but this is how you could derive from FormView to allow single object data source values. It basically does the same check that the ValidateDataSource does internally, and then creates a list wrapper for the item if it's not already a valid type.

public class SingleObjectFormView : System.Web.UI.WebControls.FormView
{
        public override object DataSource
        {
            get
            {
                return base.DataSource;
            }
            set
            {
                //will check if it's an expected list type, and if not, 
                //will put it into a list

                if (! (value == null || value is System.Collections.IEnumerable || value is System.ComponentModel.IListSource || value is System.Web.UI.IDataSource) )
                {
                    value = new List<object> { value };
                }

                base.DataSource = value;
            }
        }
 }
link|improve this answer
Thanks, I'll give that a try. I find it kind of funny, though, that ASP.NET has absolutely nothing that caters for this kind of scenario, even at v4.0 – ProfK Sep 30 '11 at 7:24
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.