diff --git a/ODataConnectedService/src/Common/CodeGeneratorUtils.cs b/ODataConnectedService/src/Common/CodeGeneratorUtils.cs
index a9d3fcf..aa0aed2 100644
--- a/ODataConnectedService/src/Common/CodeGeneratorUtils.cs
+++ b/ODataConnectedService/src/Common/CodeGeneratorUtils.cs
@@ -13,7 +13,7 @@ internal static class CodeGeneratorUtils
///
/// Try to get the location of the installed WCF Data Service.
///
- /// Returns the location of the installed WCF Data Service if it exists, else returns null.
+ /// Returns the location of the installed WCF Data Service if it exists, else returns empty string.
public static string GetWCFDSInstallLocation()
{
string dataFxRegistryPath = 8 == IntPtr.Size
@@ -31,7 +31,7 @@ public static string GetWCFDSInstallLocation()
}
}
- return null;
+ return String.Empty;
}
}
}