We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 27ccd46 commit 74dc3c8Copy full SHA for 74dc3c8
README.md
@@ -55,6 +55,15 @@ var entityClient = ClientFactory.GetClient<EntityClient>();
55
var entityList = await entityClient.GetEntities();
56
```
57
58
+### Retrieving Entities By Domain
59
+
60
+Get an `EntityClient` and then call `GetEntities("domainName")`:
61
62
+```csharp
63
+var entityClient = ClientFactory.GetClient<EntityClient>();
64
+var filteredEntityList = await entityClient.GetEntities("light");
65
+```
66
67
### Retrieving All Entity States
68
69
Get a `StatesClient` and then call `GetStates()`:
0 commit comments