|
1 |
| -//region client_1 |
2 |
| -import { DocumentStore } from "ravendb"; |
3 |
| - |
4 |
| -const store = new DocumentStore( |
5 |
| - ["http://live-test.ravendb.net"], // URL to the Server |
6 |
| - // or list of URLs |
7 |
| - // to all Cluster Servers (Nodes) |
8 |
| - |
9 |
| - "Northwind"); // Default database that DocumentStore will interact with |
10 |
| - |
11 |
| -const conventions = store.conventions; // DocumentStore customizations |
12 |
| - |
13 |
| -store.initialize(); // Each DocumentStore needs to be initialized before use. |
14 |
| - // This process establishes the connection with the Server |
15 |
| - // and downloads various configurations |
16 |
| - // e.g. cluster topology or client configuration |
17 |
| - |
18 |
| -store.dispose(); // Dispose the resources claimed by the DocumentStore |
19 |
| -//endregion |
20 |
| - |
21 |
| -class Category { |
22 |
| - constructor(name) { |
23 |
| - this.Id = null; |
24 |
| - this.Name = name; |
25 |
| - } |
26 |
| -} |
27 |
| - |
28 |
| -class Product { |
29 |
| - constructor(name, categoryId, unitsInStock) { |
30 |
| - this.Id = null; |
31 |
| - this.Name = name; |
32 |
| - this.Category = categoryId; |
33 |
| - this.UnitsInStock = unitsInStock; |
34 |
| - } |
35 |
| -} |
36 |
| - |
37 |
| -async function c2() { |
38 |
| - //region client_2 |
39 |
| - const session = store.openSession(); // Open a session for a default 'Database' |
40 |
| - |
41 |
| - const category = new Category("Database Category"); |
42 |
| - |
43 |
| - await session.store(category); // Assign an 'Id' and collection (Categories) |
44 |
| - // and start tracking an entity |
45 |
| - |
46 |
| - const product = new Product( |
47 |
| - "RavenDB Database", |
48 |
| - category.Id, |
49 |
| - 10); |
50 |
| - |
51 |
| - await session.store(product); // Assign an 'Id' and collection (Products) |
52 |
| - // and start tracking an entity |
53 |
| - |
54 |
| - await session.saveChanges(); // Send to the Server |
55 |
| - // one request processed in one transaction |
56 |
| - //endregion |
57 |
| -} |
58 |
| - |
59 |
| -async function c22(productId) { |
60 |
| - //region client_3 |
61 |
| - const session = store.openSession(); // Open a session for a default 'Database' |
62 |
| - |
63 |
| - const product = await session |
64 |
| - .include("Category") // Include Category |
65 |
| - .load(productId); // Load the Product and start tracking |
66 |
| - |
67 |
| - const category = await session |
68 |
| - .load(product.Category); // No remote calls, |
69 |
| - // Session contains this entity from .include |
70 |
| - |
71 |
| - product.Name = "RavenDB"; // Apply changes |
72 |
| - category.Name = "Database"; |
73 |
| - |
74 |
| - await session.saveChanges(); // Synchronize with the Server |
75 |
| - // one request processed in one transaction |
76 |
| - //endregion |
77 |
| -} |
78 |
| - |
79 |
| -async function c3() { |
80 |
| - //region client_4 |
81 |
| - const session = store.openSession(); // Open a session for a default 'Database' |
82 |
| - |
83 |
| - const productNames = await session |
84 |
| - .query({ collection: "Products" }) // Query for Products |
85 |
| - .whereGreaterThan("UnitsInStock", 5) // Filter |
86 |
| - .skip(0).take(10) // Page |
87 |
| - .selectFields("Name") // Project |
88 |
| - .all(); // Materialize query |
89 |
| - //endregion |
90 |
| -} |
| 1 | +//region client_1 |
| 2 | +import { DocumentStore } from "ravendb"; |
| 3 | + |
| 4 | +const store = new DocumentStore( |
| 5 | + ["http://live-test.ravendb.net"], // URL to the Server |
| 6 | + // or list of URLs |
| 7 | + // to all Cluster Servers (Nodes) |
| 8 | + |
| 9 | + "Northwind"); // Default database that DocumentStore will interact with |
| 10 | + |
| 11 | +const conventions = store.conventions; // DocumentStore customizations |
| 12 | + |
| 13 | +store.initialize(); // Each DocumentStore needs to be initialized before use. |
| 14 | + // This process establishes the connection with the Server |
| 15 | + // and downloads various configurations |
| 16 | + // e.g. cluster topology or client configuration |
| 17 | + |
| 18 | +store.dispose(); // Dispose the resources claimed by the DocumentStore |
| 19 | +//endregion |
| 20 | + |
| 21 | +class Category { |
| 22 | + constructor(name) { |
| 23 | + this.Id = null; |
| 24 | + this.Name = name; |
| 25 | + } |
| 26 | +} |
| 27 | + |
| 28 | +class Product { |
| 29 | + constructor(name, categoryId, unitsInStock) { |
| 30 | + this.Id = null; |
| 31 | + this.Name = name; |
| 32 | + this.Category = categoryId; |
| 33 | + this.UnitsInStock = unitsInStock; |
| 34 | + } |
| 35 | +} |
| 36 | + |
| 37 | +async function c2() { |
| 38 | + //region client_2 |
| 39 | + const session = store.openSession(); // Open a session for a default 'Database' |
| 40 | + |
| 41 | + const category = new Category("Database Category"); |
| 42 | + |
| 43 | + await session.store(category); // Assign an 'Id' and collection (Categories) |
| 44 | + // and start tracking an entity |
| 45 | + |
| 46 | + const product = new Product( |
| 47 | + "RavenDB Database", |
| 48 | + category.Id, |
| 49 | + 10); |
| 50 | + |
| 51 | + await session.store(product); // Assign an 'Id' and collection (Products) |
| 52 | + // and start tracking an entity |
| 53 | + |
| 54 | + await session.saveChanges(); // Send to the Server |
| 55 | + // one request processed in one transaction |
| 56 | + //endregion |
| 57 | +} |
| 58 | + |
| 59 | +async function c22(productId) { |
| 60 | + //region client_3 |
| 61 | + const session = store.openSession(); // Open a session for a default 'Database' |
| 62 | + |
| 63 | + const product = await session |
| 64 | + .include("Category") // Include Category |
| 65 | + .load(productId); // Load the Product and start tracking |
| 66 | + |
| 67 | + const category = await session |
| 68 | + .load(product.Category); // No remote calls, |
| 69 | + // Session contains this entity from .include |
| 70 | + |
| 71 | + product.Name = "RavenDB"; // Apply changes |
| 72 | + category.Name = "Database"; |
| 73 | + |
| 74 | + await session.saveChanges(); // Synchronize with the Server |
| 75 | + // one request processed in one transaction |
| 76 | + //endregion |
| 77 | +} |
| 78 | + |
| 79 | +async function c3() { |
| 80 | + //region client_4 |
| 81 | + const session = store.openSession(); // Open a session for a default 'Database' |
| 82 | + |
| 83 | + const productNames = await session |
| 84 | + .query({ collection: "Products" }) // Query for Products |
| 85 | + .whereGreaterThan("UnitsInStock", 5) // Filter |
| 86 | + .skip(0).take(10) // Page |
| 87 | + .selectFields("Name") // Project |
| 88 | + .all(); // Materialize query |
| 89 | + //endregion |
| 90 | +} |
0 commit comments