Acme.Northwind.EFDAL.NorthwindEntities.GetDatabaseExtendedProperty C# (CSharp) Method

GetDatabaseExtendedProperty() private static method

private static GetDatabaseExtendedProperty ( string connectionString, string propertyName ) : string
connectionString string
propertyName string
return string
		private static string GetDatabaseExtendedProperty(string connectionString, string propertyName)
		{
			var returnVal = string.Empty;
			returnVal = SelectExtendedProperty(connectionString, propertyName, string.Empty, string.Empty, string.Empty);
			return returnVal;
		}