Implemented sql search + negatable searches

This commit is contained in:
2025-03-15 19:29:23 +01:00
parent 7d3aa6de94
commit 5dec609004
3 changed files with 101 additions and 73 deletions

View File

@@ -53,7 +53,8 @@ builder.Services.AddHopFrame(options => {
context.Table<Post>()
.Property(p => p.Author)
.Format((user, _) => $"{user.FirstName} {user.LastName}")
//.Format((user, _) => $"{user.FirstName} {user.LastName}")
.SetDisplayedProperty(u => u.Username)
.SetValidator((_, _) => []);
context.Table<Post>()