-
Notifications
You must be signed in to change notification settings - Fork 16
Basic usage
Yossi Kolesnicov edited this page Jul 25, 2018
·
1 revision
First, define an Entity:
// todo-item.entity.ts
import { Entity, EntityModelBase } from "@microsoft/paris";
@Entity({
singularName: "Todo Item",
pluralName: "Todo Items",
endpoint: "todo/items"
})
export class TodoItem extends EntityModelBase{
@EntityField()
text:string;
@EntityField()
time:Date;
}
The above defines an Entity, which can be used to query the todo/items server endpoint, like this:
import { Paris } from "@microsoft/paris";
const paris = new Paris();
paris.getItemById(TodoItem, 1).subscribe((todoItem:TodoItem) => {
console.log("Todo item with ID 1: ", todoItem);
});