小编Ahm*_*zel的帖子

实体框架显式加载示例

我在"northwind"数据库上尝试这部分代码.但是我收到了DataBind错误

    protected void Page_Load(object sender, EventArgs e)
    {

        if (!Page.IsPostBack)
        {
            GetSpecificCustomer();
        }
    }

    private void GetSpecificCustomer()
    {
        using (var ctx = new northwindContext())
        {
            var query = ctx.Customers.Include("CustomerID").Take(3);

            grdEmployees.DataSource = query;
            grdEmployees.DataBind(); =>NotSupportedException was unhandled by user code(Data binding directly to a store query (DbSet, DbQuery, DbSqlQuery) is not supported. Instead populate a DbSet with data, for example by calling Load on the DbSet, and then bind to local data. For WPF bind to DbSet.Local. For WinForms bind to …
Run Code Online (Sandbox Code Playgroud)

explicit entity-framework-4

3
推荐指数
1
解决办法
4776
查看次数

标签 统计

entity-framework-4 ×1

explicit ×1