How to build secure, efficient, scalable applications in less time with fewer resourceshow to create faster code faster. How to leverage the potential of SQL Server CLR executables and knowing when these features make sense. How to work with your DBA to maintain database integrity and security....
3.) I have a working Authorization which needs TenantId + ClientId, BUT when rolling out the program to other organizations, they have not any ClientId for authorization. They have to create firstly an app manually and only than they can log in ... is there any way for f...
Access your data On Premise or in the Cloud with ADO.NET Data Services Service Virtualization With The Managed Services Engine Editor's Note: Head in the Clouds File Backup, Browsing folders inside Visual Studio, Multiple Monitors, More Documenting Your Code With XML Comments Understanding The CLR...
and a SQL & SharePoint server. You could possibly use 3 servers and separate the SQL and SharePoint out, or you might expand out SharePoint and not just use the stand-alone configuration. You might add other servers in the future (You will need a beefy machine for this.) By building ...
As you can see in this version of the code, I've encapsulated all the SqlConnection and SqlDataReader object manipulation inside the DataServer2 class. DataServer2 is also assumed to be taking care of its own configuration, so the new Process method doesn't have to know anything about set...
You need to provision a SQL SPI Cosmos DB account to support the app. How should you complete the Azure CLI commands? To answer, select the appropriate options in the answer area. NOTE: Each correct selection is worth one point. Hot Area: Correct Answer: Box 1: BoundedStaleness Bounded st...
Create, read, update, and delete (CRUD) data using embedded SQL code Identify and implement global functions in X++ ensure correct usage of Display Fields Implement table and form methods Develop object-oriented code Implement chain of command Implement query objects and Quer...
In the ProcessWorkflowEvent sample, I'm trying to make the point that coupling to infrastructure concerns will increase the unit testing effort. There's a more general concern evident in this sample. Excessive work to set up a unit test is a "code smell." Excessive unit test setup...
The admin can control what the app accesses in their Azure via access permissions and of course removing the app. Is this a best practice? Where can I find guidance on who and where the secret is managed? Please remember this is related to the developer of a G...
keep things that have to change together as close together in the code as possible. Allow unrelated things in the code to change independently (also know as orthogonality). Minimize duplication in the code. Decrease coupling Coupling among classes or subsystems is a measure of how interconnected ...