Showing posts with label SharePoint. Show all posts
Showing posts with label SharePoint. Show all posts

Wednesday, July 10, 2024

10 Jul

Best Practices for SharePoint Security

 Microsoft SharePoint offers robust security features to protect your organization's data and ensure compliance with various regulatory requirements. Here’s an overview of some key security features in SharePoint:1. Authentication and Access ControlAzure Active Directory (AAD) Integration: SharePoint integrates with...

Wednesday, November 4, 2020

04 Nov

Microsoft Teams Gets New Features Like Live Captions and reports etc.,

 Its video conferencing tool Live captions with speaker attributionfeature is applicable for all versionsAllow meeting organisers and presenters to prevent attendees from unmutingTeams meetings and call recordings can now be stores in OneDrive or in SharePointAllow IP video policy to prevent both outgoign...

Wednesday, November 29, 2017

29 Nov

Simplified CRUD Operation Using Entity Framework

 I am going to tell you  very simple manner to do the CRUD operation using LocalDB with entity framework and how to use code first Database migration.After reading this article you are going to know about,Uses and purpose of LocalDb.Connection string about LocalDb.Model Binding.What is DBContext class ?Step by...
29 Nov

SQL Important Query

Select * from(SELECT 0 as SORTCOLUMN, -1 AS [KEY], 'Select' AS [VALUE]UNION allSELECT 1 AS SORTCOLUMN, PARAMALLOWEDVALUEID AS [KEY], PARAMETERVALUE AS [VALUE]FROM ICM_COMMPARAMALLOWDVALUE where PARAMETERID = 1 AND ISACTIVE = 1) tbl order by case when SORTCOLUMN=0 then 3 else 1 end,[value] ...