本文介绍了和错误:基础提供程序在Open上失败。的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

你好,我的下面代码出错:

hello i get error on my below code:

public static IEnumerable<tbl_index_menu> PutParentInMenuTop()
        {
            using (SportContext db = new SportContext())
            {
                return db.tbl_index_menu.Where(z => z.parent == 0 && z.id_position == 1 &&    z.name_menu != "home").OrderBy(z => z.orderlist).ToList();
            }
        }



和错误是:基础提供商在Open上失败。


and error is : The underlying provider failed on Open.

推荐答案



这篇关于和错误:基础提供程序在Open上失败。的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-29 20:39
查看更多