Object Identity and Object References
Introduction
Object Identity
Primary Keys and Foreign Keys
Retrieving from Object Identity
Handle.GET("PersonList/{?}", (string objectId) =>
{
return new PersonPage()
{
Data = Db.FromId<Person>(objectId)
};
});Last updated