6 lines
No EOL
235 B
C#
6 lines
No EOL
235 B
C#
using IdentityShroud.Core.Security;
|
|
using Microsoft.EntityFrameworkCore.Storage.ValueConversion;
|
|
|
|
namespace IdentityShroud.Core.EFCore;
|
|
|
|
public class DekIdConverter() : ValueConverter<DekId, Guid>(id => id.Id, guid => new DekId(guid)); |