从实体框架到 Listivew 数据源的数据绑定

发布于 2024-12-10 05:58:35 字数 868 浏览 0 评论 0原文

我的实体返回以下内容:

class StoreClass{

    public Entry GetStoreInfo(int id, UserInfo userInfo)
    {
       using (var context = new StoreEntities())
       {
          var query = from a in context.Store
            .Include("Ratings")
            .Include("Versions")
            .Include("Versions.Installers")
            .Include("Versions.Installers.Screenshots")
            .Include("Category")
            where a.ID == id && a.IsActive 
         select a;
    return query.FirstOrDefault();
             }
    }
    }

我试图将从上述函数返回的数据绑定到列表视图。

StoreClass objStore = new StoreClass ();
            Listview1.DataSource = objStore .GetStoreInfo(1,userInfo);
            LstAppletInfo.DataBind();
        }

但它会抛出错误“数据源是无效类型。它必须是 IListSource、IEnumerable 或 IDataSource”。

帮我解决这个问题!!!

My entity is returning the following:

class StoreClass{

    public Entry GetStoreInfo(int id, UserInfo userInfo)
    {
       using (var context = new StoreEntities())
       {
          var query = from a in context.Store
            .Include("Ratings")
            .Include("Versions")
            .Include("Versions.Installers")
            .Include("Versions.Installers.Screenshots")
            .Include("Category")
            where a.ID == id && a.IsActive 
         select a;
    return query.FirstOrDefault();
             }
    }
    }

I am trying to bind the data data returned form the above function to the listview.

StoreClass objStore = new StoreClass ();
            Listview1.DataSource = objStore .GetStoreInfo(1,userInfo);
            LstAppletInfo.DataBind();
        }

But its throwing an error "Data source is an invalid type. It must be either an IListSource, IEnumerable, or IDataSource."

Help me solve this!!!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

再浓的妆也掩不了殇 2024-12-17 05:58:35
public IEnumerable<Entry> GetStoreInfo(int id, UserInfo userInfo) 
{ 
    ...
    return query; 
} 
public IEnumerable<Entry> GetStoreInfo(int id, UserInfo userInfo) 
{ 
    ...
    return query; 
} 
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文