We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ae020c9 commit 28ea147Copy full SHA for 28ea147
README.md
@@ -207,6 +207,18 @@ if(condition)
207
var createResult = await odooRepository.CreateAsync(model);
208
```
209
210
+or
211
+```C#
212
+ var model2 = new OdooDictionaryModel("res.partner") {
213
+ { "name", "test name" },
214
+ { "country_id", 20 },
215
+ { "city", "test city" },
216
+ { "zip", "12345" },
217
+ { "street", "test address" },
218
+ { "company_type", "company" },
219
+ };
220
+var createResult = await odooRepository.CreateAsync(model);
221
+```
222
223
224
0 commit comments