11 lines
267 B
C#
11 lines
267 B
C#
|
using Microsoft.EntityFrameworkCore.Storage.ValueConversion;
|
||
|
using NUlid;
|
||
|
|
||
|
namespace Foxchat.Core;
|
||
|
|
||
|
public class UlidConverter() : ValueConverter<Ulid, Guid>(
|
||
|
convertToProviderExpression: x => x.ToGuid(),
|
||
|
convertFromProviderExpression: x => new Ulid(x)
|
||
|
)
|
||
|
{ }
|