Last year searching a bit about authentication in API's REST I heard about OAuth and saw many recommendations regarding it. I read a bit about it, I liked it and I started to use it with ASP.NET Web API 2 .
Now I've only r...
I'm using this mapping for a DATETIME field of SQL Server:
Property(X => X.DatNascimento).HasColumnName("DAT_NASCIMENTO").HasColumnType("datetime");
But I have another TIME field that I do not know how to configure:
Property(X => X....
From the 2009 release of Delphi (if I'm not mistaken) came the namespaces .
I would like to know, in a simple example if possible that illustrates a case of advantage, what would be the advantages of namespaces in Delphi?
Accou...
I was reading "Cryptography and Security: The official guide to RSA" but I was limited to a few pages (if anyone has the PDF of this please share !!) and then I came across KEK and could not read more ..
What is it and how do you use it corre...
I have the following date / time format:
25/01 / 2017a1111: 53: 37
And the following regex:
REGX_DATAHORA_DISTRIBUICAO = "(?<data>\d{1,2}\/\d{1,2}\/\d{4})|(?<hora>\d{1,2}:\d{1,2}:\d{1,2})"
private OffsetDa...
When I run the command Update-Database I get the following error
Could not load file or assembly 'Microsoft.Build.Framework,
Version = 15.1.0.0, Culture = neutral, PublicKeyToken = b03f5f7f11d50a3a 'or
one of its dependencies....
I need to access the property called "version" in my file, and I know this is not possible in Javascript, but I do not know which language to use, or what to do to get to it. I thought about using PHP, but I do not have much knowledge in this ar...
I have a date in this format
"2017-10-13T18:15:41.143Z"
And would like a date in this format
10/06/2017 01:42:34 PM (-0300)
How can I do the conversion?
I came across this question recently and did not find much about it in web .
I'm used to working (and reading) about session in PHP , but I never stopped to think how they would be at HTTP level, someone would you know something about?...