Update to EF6

This commit is contained in:
2014-07-14 17:38:14 -04:00
parent 7e3eedd844
commit 2f90035494
39 changed files with 2022 additions and 1944 deletions

View File

@@ -1,16 +1,16 @@
using System;
using Common.Debug;
using System;
using System.Linq;
using System.Xml;
using Common.Debug;
namespace FeedCenter.FeedParsers
{
[Serializable]
internal class InvalidFeedFormatException : ApplicationException
{
internal InvalidFeedFormatException(Exception exception) : base(string.Empty, exception)
{
internal InvalidFeedFormatException(Exception exception)
: base(string.Empty, exception)
{
}
}
@@ -124,7 +124,7 @@ namespace FeedCenter.FeedParsers
try
{
// Create the XML document
XmlDocument document = new XmlDocument { XmlResolver = null };
var document = new XmlDocument { XmlResolver = null };
// Load the XML document from the text
document.LoadXml(feedText);