Acme.Northwind.EFDAL.Util.GetDefinedPlatform C# (CSharp) Method

GetDefinedPlatform() static private method

static private GetDefinedPlatform ( ) : DatabasePlatformConstants
return DatabasePlatformConstants
		internal static DatabasePlatformConstants GetDefinedPlatform()
		{
			var tempPlatform = System.Configuration.ConfigurationManager.AppSettings["NorthwindEntities.Platform"];
			var platformValue = DatabasePlatformConstants.SQLServer;
			if (!Enum.TryParse(tempPlatform, true, out platformValue)) platformValue = DatabasePlatformConstants.SQLServer;
			return platformValue;
		}