Skip to content

Commit c18ef91

Browse files
committed
Dynamic mapping documentation update
1 parent cf8b72d commit c18ef91

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

AgileMapper.UnitTests.Orms/TestConstants.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ public static string GetLocalDbConnectionString<TDbContext>()
1515
dbName = dbName.Substring(0, dbName.Length - "Context".Length);
1616
}
1717

18-
return "Data Source=(local)\\SQLExpress;" +
18+
return "Data Source=(local);" +
1919
"Initial Catalog=" + dbName + ";" +
2020
"Integrated Security=True;" +
2121
"MultipleActiveResultSets=True";

docs/src/Dynamic-Mapping.md

+5
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,11 @@ The created `ExpandoObject` (in both cases) will have the following member names
8787
* `"Specialties_0_Id"` set to 123
8888
* `"Specialties_0_Name"` set to "Emergency Medicine"
8989

90+
## .NET Standard 1.0
91+
92+
.NET Standard 1.0 does not support mapping dynamic root objects - it can only map nested dynamic members.
93+
.NET Standard 1.3 successfully maps both scenarios.
94+
9095
## Configuration
9196

9297
Dynamic mapping is [highly configurable](/configuration/Dynamic-Mapping).

0 commit comments

Comments
 (0)