Skip to content

Commit 9a809ea

Browse files
authored
Update README.md: Entity Framework section
fix typo of variable
1 parent 2755494 commit 9a809ea

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -247,7 +247,7 @@ public class UlidToBytesConverter : ValueConverter<Ulid, byte[]>
247247
: base(
248248
convertToProviderExpression: x => x.ToByteArray(),
249249
convertFromProviderExpression: x => new Ulid(x),
250-
mappingHints: defaultHints.With(mappingHints))
250+
mappingHints: DefaultHints.With(mappingHints))
251251
{
252252
}
253253
}
@@ -264,7 +264,7 @@ public class UlidToStringConverter : ValueConverter<Ulid, string>
264264
: base(
265265
convertToProviderExpression: x => x.ToString(),
266266
convertFromProviderExpression: x => Ulid.Parse(x),
267-
mappingHints: defaultHints.With(mappingHints))
267+
mappingHints: DefaultHints.With(mappingHints))
268268
{
269269
}
270270
}

0 commit comments

Comments
 (0)