Harrison Deng
57f67391f1
After reconsidering where I want to take this project, I realized that a MPA is more fitting.
63 lines
2.3 KiB
C#
63 lines
2.3 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Text.Json;
|
|
using Microsoft.AspNetCore.Identity;
|
|
using Microsoft.AspNetCore.Identity.EntityFrameworkCore;
|
|
using Microsoft.EntityFrameworkCore;
|
|
using Microsoft.EntityFrameworkCore.ChangeTracking;
|
|
using Props.Models;
|
|
using Props.Shop.Framework;
|
|
|
|
namespace Props.Data
|
|
{
|
|
public class ApplicationDbContext : IdentityDbContext<ApplicationUser>
|
|
{
|
|
public ApplicationDbContext(DbContextOptions<ApplicationDbContext> options)
|
|
: base(options)
|
|
{
|
|
}
|
|
|
|
protected override void OnModelCreating(ModelBuilder modelBuilder)
|
|
{
|
|
base.OnModelCreating(modelBuilder);
|
|
|
|
modelBuilder.Entity<ResultsPreferences>()
|
|
.Property(e => e.Order)
|
|
.HasConversion(
|
|
v => JsonSerializer.Serialize(v, null),
|
|
v => JsonSerializer.Deserialize<List<ResultsPreferences.Category>>(v, null),
|
|
new ValueComparer<IList<ResultsPreferences.Category>>(
|
|
(a, b) => a.SequenceEqual(b),
|
|
c => c.Aggregate(0, (a, v) => HashCode.Combine(a, v.GetHashCode())),
|
|
c => (IList<ResultsPreferences.Category>)c.ToList()
|
|
)
|
|
);
|
|
|
|
modelBuilder.Entity<SearchOutline>()
|
|
.Property(e => e.ShopStates)
|
|
.HasConversion(
|
|
v => JsonSerializer.Serialize(v, null),
|
|
v => JsonSerializer.Deserialize<SearchOutline.ShopToggler>(v, null),
|
|
new ValueComparer<SearchOutline.ShopToggler>(
|
|
(a, b) => a.Equals(b),
|
|
c => c.GetHashCode(),
|
|
c => c.Copy()
|
|
)
|
|
);
|
|
modelBuilder.Entity<SearchOutline>()
|
|
.Property(e => e.Filters)
|
|
.HasConversion(
|
|
v => JsonSerializer.Serialize(v, null),
|
|
v => JsonSerializer.Deserialize<Filters>(v, null),
|
|
new ValueComparer<Filters>(
|
|
(a, b) => a.Equals(b),
|
|
c => c.GetHashCode(),
|
|
c => c.Copy()
|
|
)
|
|
);
|
|
}
|
|
}
|
|
}
|