This change fixes 2 issues in the "Schema Attributes" section.
1. This section uses < and > around the attribute names, which is confusing, because that is notation reserved for elements.
2. The description of exclude is a little vague and somewhat misleading.
The sample xml has a couple of problems that are fixed here.
1. Comments use -- not --- to begin and end. 3 hyphens will cause a parse error.
2. The default values for <compat-mode> (Default) and <open-in> (None) are not capitalized, which doesn't fit with other documentation and tools.
As previously discussed in this PR, I have converted the
**Important** section headings by using their MarkDown equivalent
> [!IMPORTANT] (as well as adding the blockquote for its text content).
- Resolve duplicate use of https where both http and https was intended
- MarkDown code fence XML tag corrections
- Replace HTML `<br>` codes with NewLine
- Remove redundant space at the end of the version 2 file
Resolves#4769
In previous doc:
Step 3, following 10 of To create the website will change the connectionstring to like following:
<add connectionString="Server=ServerName;Database=DatabaseName;Integrated Security=true" name="LOBMergedEntities" providerName="System.Data.EntityClient" />
But for Model first connection string, it should be like following as displayed in Web.config in the project folder.
<add name="LOBMergedEntities" connectionString="metadata=res://*/EMIEDataModel.csdl|res://*/EMIEDataModel.ssdl|res://*/EMIEDataModel.msl;provider=System.Data.SqlClient;provider connection string="data source=jierong-srv;initial catalog=EMIEDatabase;integrated security=True;MultipleActiveResultSets=True;App=EntityFramework"" providerName="System.Data.EntityClient"/>
This will introduce data access error, throwing "Keyword not supported: 'server'."
2. The fix is in step 1 - 6, just update server name and database name, then remove the manual setting steps in Step 2.
Enterprise Mode sitelist manager outputs:
<emie>
<domain exclude="true">fabrikam.com
<path exclude="false">/products</path>
</domain>
</emie>
The above mentioned version is the only version that works.
Current version of the documentation (that does not work as expected) is the following:
<emie>
<domain exclude="false">fabrikam.com
<path exclude="true">/products</path>
</domain>
</emie>