Top "Identity" questions

An inherent property of an entity that distinguishes that entity from all others.

Use of the identity function in JavaScript

I use the identity function in all my JavaScript programs: function identity(value) { return value; } The reason is that I …

javascript function functional-programming identity use-case
What is the Signing Credential in IdentityServer4?

We are in the process of implementing Identity Server 4 with our .NET Core web app. I went trough the Identity …

asp.net-core asp.net-identity identity identityserver4
AD vs ADFS vs LDAP: Explain it like I'm 5

I don't work with Microsoft but I'm struggling understanding conceptually how AD, ADFS and LDAP work together. Let's say I …

active-directory ldap identity adfs
Cyber-Ark Privileged Identity Management API

Do anybody know if there is any sort of API available for Cyber-Ark Privileged Identity Management to integrate it with …

api identity cyber-ark
How can I set a Microsoft SQL field as identity but to START with a certain number?

How can I set a Microsoft SQL field as identity but to START with a certain number?

sql sql-server identity
In PostgreSQL how do you insert into a table with only one identity column?

For instance: {create table Participant ( id serial, primary key(id) );} How do you insert into table in this case?

sql postgresql identity
How can I change default ASP.NET Identity table names in .NET CORE?

I've started with .NET Core, in MVC 5 I changed default table names for example: AspNETUsers to Users in this way …

asp.net-mvc asp.net-core identity
Python: Why does ("hello" is "hello") evaluate as True?

Why does "hello" is "hello" produce True in Python? I read the following here: If two string literals are equal, …

python identity string-comparison object-comparison
IDENTITY NOT NULL at Table Creation

Can anyone please tell me whether the instruction IDENTITY NOT NULL at a table creation is redundant or not? I …

sql null identity
SQL Server query to find clustered indexes

Is it possible to write a query that returns all tables that have clustered indexes that are not based on …

sql-server tsql identity clustered-index