Select from following answers:- Use a connection string that specifies Windows integrated security. Configure stored procedures for entity update, delete, and insert operations.

- Use a connection string that specifies Windows integrated security. Use the Entity Data Model Wizard to generate default entity operations.
- Use a connection string that uses a SQL Server login created for the application. Use the Entity Data Model Wizard to generate default entity operations.
- All Above
To help limit access to your data source, you must secure connection information, such as user ID, password, and data source name. In order to avoid exposing user information, use Windows authentication (sometimes referred to as integrated security). Windows authentication is specified in a connection string by using the Integrated Security or TrustedConnection keywords, thereby eliminating the need to use a user ID and password. With Windows authentication, Windows authenticates users and access to server and database resources is determined by granting permissions to Windows users and groups. Because users are not granted write access to tables, table modifications must be done with stored procedures. This means you must configure stored procedures for entity update, delete, and insert operations.
Show Correct Answer
Source: MeasureUp.com | |
Alert Moderator