Skip to content

Commit 16d8ffc

Browse files
authored
Merge pull request #4931 from MicrosoftDocs/master
6/27/2019 AM Publish
2 parents 9d3529e + e9979a0 commit 16d8ffc

File tree

3 files changed

+30
-2
lines changed

3 files changed

+30
-2
lines changed

docs/containers/troubleshooting-docker-errors.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,31 @@ which will refresh the network-related components on your host machine.
5151

5252
When using Docker for macOS, you might encounter an error referencing the folder /usr/local/share/dotnet/sdk/NuGetFallbackFolder. Add the folder to the File Sharing tab in Docker
5353

54+
## Docker users group
55+
56+
You might encounter the following error in Visual Studio when working with containers:
57+
58+
```
59+
The current user must be in the 'docker-users' group to use Docker Desktop.
60+
Add yourself to the 'docker-users' group and then log out of Windows.
61+
```
62+
63+
You must be a member of the 'docker-users' group in order to have permissions to work with Docker containers. To add yourself to the group in Windows 10, follow these steps:
64+
65+
1. From the Start menu, open **Computer Management**.
66+
1. Expand **Local Users and Groups**, and choose **Groups**.
67+
1. Find the **docker-users** group, right-click and choose **Add to group**.
68+
1. Add your user account or accounts.
69+
1. Sign out and sign back in again for these changes to take effect.
70+
71+
You can also use the `net localgroup` command at the Administrator command prompt to add users to specific groups.
72+
73+
```cmd
74+
net localgroup docker-users DOMAIN\username /add
75+
```
76+
77+
In PowerShell, use the [Add-LocalGroupMember](/powershell/module/microsoft.powershell.localaccounts/add-localgroupmember) function.
78+
5479
## Microsoft/DockerTools GitHub repo
5580

5681
For any other issues you encounter, see [Microsoft/DockerTools](https://github.com/microsoft/dockertools/issues) issues.

docs/data-tools/entity-data-model-tools-in-visual-studio.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,10 @@ ms.workload:
1313

1414
Entity Framework is an object-relational mapping technology that enables .NET developers to work with relational data by using domain-specific objects. It eliminates the need for most of the data-access code that developers usually need to write. Entity Framework is the recommended object-relational mapping (ORM) modeling technology for new .NET applications.
1515

16-
Entity Framework Tools are designed to help you build Entity Framework (EF) applications. The complete documentation for Entity Framework is here: [EF Core and EF 6](/ef/).
16+
Entity Framework Tools are designed to help you build Entity Framework (EF) applications. The complete documentation for Entity Framework is here: [Overview - EF 6](/ef/ef6/).
17+
18+
> [!NOTE]
19+
> The Entity Framework Tools described on this page are used to generate *.edmx* files, which are not supported in EF Core. To generate an EF Core model from an existing database, see [Reverse Engineering - EF Core](/ef/core/managing-schemas/scaffolding). For more information on the differences between EF 6 and EF Core, see [Compare EF 6 and EF Core](/ef/efcore-and-ef6/).
1720
1821
With Entity Framework Tools, you can create a *conceptual model* from an existing database and then graphically visualize and edit your conceptual model. Or, you can graphically create a conceptual model first, and then generate a database that supports your model. In either case, you can automatically update your model when the underlying database changes and automatically generate object-layer code for your application. Database generation and object-layer code generation are customizable.
1922

docs/modeling/includes/modeling_sdk_info.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
ms.topic: include
33
---
44
> [!NOTE]
5-
> The **Text Template Transformation** component is automatically installed as part of the **Visual Studio extension development** workload. You can also install it from the **Individual components** tab of Visual Studio Installer, under the **Code tools** category. Install the **Modeling SDK** component from the **Individual components** tab.
5+
> The **Text Template Transformation** component is automatically installed as part of the **Visual Studio extension development** workload. You can also install it from the **Individual components** tab of Visual Studio Installer, under the **SDKs, libraries, and frameworks** category. Install the **Modeling SDK** component from the **Individual components** tab.

0 commit comments

Comments
 (0)