My code has an error, I do not know what is causing it
namespace cms.data.System
{
public class MenuProccess
{
public static List<ModelMenu> GetMenus(Nullable<int> LanguageID){
using (cmsEntities db = new cmsEntities) //error on this line
{
return null;
}
return null;
}
}
the error is
'cmsEntities': Type used in a using statement must be implicitly convertible to 'System.IDisposable'