Showing posts with label list or library. Show all posts
Showing posts with label list or library. Show all posts

Tuesday, December 1, 2020

01 Dec

Get lists and libraries where throttling is disabled using powerShell

 how to disable throttling on single lists but if we don’t monitor this and keep disabling it can turn in to a nightmare for admins. When you disable throttling on a list basically you give it a pass to go and complete the operation no matter how long it takes. This is not a good idea especially when the...

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] ...
29 Nov

Controller.cs inside WebApi

namespace CSSI.VUE.Web.API.Controllers{public class ProducerEligibiltyController : ApiController{ [CSSIScope("GET_PRODUCER_ELIGIBILITY")][HttpGet]public ResponseMessageResult Get(string ApplicationSignedDate,string CarrierCode,string LOB,string SitusState,string RequestType,string AgentCode = null,string WritingNumber...