File tree 2 files changed +6
-1
lines changed
AgileMapper.UnitTests.Orms
2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ public static string GetLocalDbConnectionString<TDbContext>()
15
15
dbName = dbName . Substring ( 0 , dbName . Length - "Context" . Length ) ;
16
16
}
17
17
18
- return "Data Source=(local)\\ SQLExpress ;" +
18
+ return "Data Source=(local);" +
19
19
"Initial Catalog=" + dbName + ";" +
20
20
"Integrated Security=True;" +
21
21
"MultipleActiveResultSets=True" ;
Original file line number Diff line number Diff line change @@ -87,6 +87,11 @@ The created `ExpandoObject` (in both cases) will have the following member names
87
87
* ` "Specialties_0_Id" ` set to 123
88
88
* ` "Specialties_0_Name" ` set to "Emergency Medicine"
89
89
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
+
90
95
## Configuration
91
96
92
97
Dynamic mapping is [ highly configurable] ( /configuration/Dynamic-Mapping ) .
You can’t perform that action at this time.
0 commit comments