You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/Thinktecture.Runtime.Extensions.EntityFrameworkCore.Sources/EntityFrameworkCore/Conventions/ValueObjectConventionPlugin.cs
+7Lines changed: 7 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -75,6 +75,13 @@ private static void AddNonKeyedValueObjectMembers(IConventionEntityTypeBuilder e
Copy file name to clipboardExpand all lines: test/Thinktecture.Runtime.Extensions.EntityFrameworkCore.Tests.Sources/EntityFrameworkCore/ValueConversion/ValueObjectValueConverterFactoryTests.cs
Copy file name to clipboardExpand all lines: test/Thinktecture.Runtime.Extensions.EntityFrameworkCore.Tests.Sources/Extensions/EntityTypeBuilderExtensionsTests/AddValueObjectConverters.cs
+9Lines changed: 9 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -59,6 +59,15 @@ public void Should_add_converters_for_complex_types_inside_complex_type_configur
varentityType=_ctx.Model.FindEntityType(typeof(ComplexValueObjectWithComplexType))??thrownewException("Entity not found");
67
+
varcomplexProperty=entityType.FindComplexProperty(nameof(ComplexValueObjectWithComplexType.TestComplexType))??thrownewException("Complex type property not found");
Copy file name to clipboardExpand all lines: test/Thinktecture.Runtime.Extensions.EntityFrameworkCore.Tests.Sources/Extensions/ModelBuilderExtensionsTests/AddValueObjectConverters.cs
+9Lines changed: 9 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -46,6 +46,15 @@ public void Should_add_converters_for_complex_types()
varentityType=_ctx.Model.FindEntityType(typeof(ComplexValueObjectWithComplexType))??thrownewException("Entity not found");
54
+
varcomplexProperty=entityType.FindComplexProperty(nameof(ComplexValueObjectWithComplexType.TestComplexType))??thrownewException("Complex type property not found");
Copy file name to clipboardExpand all lines: test/Thinktecture.Runtime.Extensions.EntityFrameworkCore.Tests.Sources/Extensions/ValueObjectDbContextOptionsBuilderExtensionsTests/UseValueObjectValueConverter.cs
+9Lines changed: 9 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -55,6 +55,15 @@ public void Should_add_converters_for_complex_types()
varentityType=_ctx.Model.FindEntityType(typeof(ComplexValueObjectWithComplexType))??thrownewException("Entity not found");
63
+
varcomplexProperty=entityType.FindComplexProperty(nameof(ComplexValueObjectWithComplexType.TestComplexType))??thrownewException("Complex type property not found");
0 commit comments