Added relation support

This commit is contained in:
Leon Hoppe
2025-01-15 08:02:23 +01:00
parent c4c0424559
commit ad4d9c65d6
12 changed files with 93 additions and 15 deletions

View File

@@ -35,6 +35,10 @@ builder.Services.AddHopFrame(options => {
table.Property(u => u.Id)
.Sortable(false);
});
context.Table<Post>()
.Property(p => p.Author)
.DisplayedProperty(u => u!.Username);
});
});