Normal
I notice you are using a script file I have not seen before - KTI_MDB.csscript.We are now using entity framework so we need to declare that in the script files.//css_reference "core.dll";//css_reference "Databases.dll";//css_reference "EntityFramework.dll";//css_reference "utils.dll";using System;using System.Text;using System.IO;using System.Net;using System.Collections;using System.Data;using System.Data.Entity;using System.Web;using System.Text.RegularExpressions;using MediaPortal.Util;using MediaPortal.Video.Database;using System.Windows.Forms;Notice entity framework and the system.data references.
I notice you are using a script file I have not seen before - KTI_MDB.csscript.
We are now using entity framework so we need to declare that in the script files.
//css_reference "core.dll";
//css_reference "Databases.dll";
//css_reference "EntityFramework.dll";
//css_reference "utils.dll";
using System;
using System.Text;
using System.IO;
using System.Net;
using System.Collections;
using System.Data;
using System.Data.Entity;
using System.Web;
using System.Text.RegularExpressions;
using MediaPortal.Util;
using MediaPortal.Video.Database;
using System.Windows.Forms;
Notice entity framework and the system.data references.