Posts by Tiago • 1,224 points
18 posts
-
0
votes0
answers10
viewsQ: ASP.NET Identity authentication in multiple applications
I currently have the following scenario. Two applications each with their database using Entity and Identity Core 2.2 My goal is to create a user center to unify the user table 'Aspnetusers' so that…
-
2
votes1
answer21
viewsQ: SQL Index Unico
I have a question on SQL Server. I have the following table, ID (integer Key), Name (nvachar), CPF (nvachar, with index unico). If I insert with the CPF that already exists, SQL returns with error…
-
1
votes2
answers122
viewsA: Error accessing JSON - Xamarin Forms
I believe your mistake is lack of Internet in the VM itself. As you did the tests on other Vices and they were right, and as I commented in the answer above, your code is right. So I think the…
-
0
votes2
answers122
viewsA: Error accessing JSON - Xamarin Forms
Your code is correct, but I advise you to use Getstringasync instead of Getasync. public async static Task<Retorno> BuscaInformacao(string email, string senha) { HttpClient httpClient = new…
-
2
votes1
answer98
viewsQ: Semaphoreslim locking method
I am using Semaphoreslim to make the "lock" of some methods of my Web-API, until it worked correctly but there are times when these same methods get totally stuck, by Postman when I run gets a…
-
0
votes2
answers121
viewsA: Sharepoint with Angular. Are we doing it right? What’s the best way to integrate?
This means of development is quite promising because of the separation of the back-end and front-end layers. Microsoft itself encourages this type of development and as Sharepoint has a REST API. In…
-
1
votes0
answers68
viewsQ: DNVM, DNX, and DNU what are they for?
With the ASP.Net 5 Eventually, these new models appeared. This new template also provides us with command line tools to manage the choice of the . NET, library packages, and runtime environment…
-
4
votes1
answer281
viewsQ: SQL Server Full-Text-Search
I am developing a search using the full text search of SQL Server 2008. The search is working correctly, but the need to include a feature appeared. When you search for "Joes", the message "you…
sql-serverasked Tiago 1,224 -
1
votes2
answers1524
viewsQ: Upper or lower case URL
When it comes to SEO it makes some difference the use of my site’s URL being all lowercase? Example: - http://localhost/produto/livro-stackoverflow - http://localhost/Produto/Livro-StackOverflow My…
-
3
votes1
answer375
viewsQ: Translation of MVC routes
With the ASP.Net MVC 4 I am wanting to translate all my routes, currently some are like this: http://localhost/pt-br http://localhost/pt-br/sobre http://localhost/pt-br/usuario/cadastro I am adding…
-
0
votes1
answer64
viewsA: Between in Spservices with multiple date fields
Then all your conditions have to use the OR If yes, your CAML is wrong the right would be so: <Where> <Or> <Or> <Or> <Or> <Or> <Or> <Or> <Or>…
-
15
votes3
answers2752
viewsQ: What are indexes in SQL Server for?
For what the index serves, I know it improves performance, but what the database does behind that improves this performance. When is it recommended to use? And where should I use an index?
-
1
votes1
answer193
viewsA: Text alignment in Sharepoint
Through Sharepoint Designer access the site, where your list is, then navigate to: /Lists/{Nome da Lista}/DispForm.aspx Edit the file in advancing mode, then add the following code: .ms-pagetitle {…
sharepointanswered Tiago 1,224 -
1
votes3
answers1139
viewsQ: Route to static pages in MVC
I have a question about the application ASP.Net MVC: Structure Views | +-- Home | | | +-- Index.cshtml | | | +-- Page.cshtml | +-- Users | | | +-- Details.cshtml | +-- Paginas | | | +--…
-
2
votes2
answers328
viewsQ: Which framework should I use for Functional Testing on . net?
I would like to know the framework options that simulates testes unitários to the .net. I know a little Ruby and I know that there is Cucumber which by the way is very good, but to .net I did a…
-
2
votes3
answers968
viewsQ: How to run Url.Content via Client?
In ASP.NET MVC it is possible to run the @Url.Content views and controllers. This variable returns the relative level at which the site is. My question is: how to execute the Url.Content via…
-
7
votes1
answer1225
viewsQ: VBA - Backpack problem
In excel I have the following table | Produtos | Preço | | Produto A | 100 | | Produto B | 250 | | Produto C | 200 | | Produto D | 800 | | Produto E | 560 | | Produto F | 970 | ... And I would like…
-
57
votes5
answers7848
viewsQ: What is the difference of string vs string?
I wonder what the real difference is between String (capital letters) and string (s tiny). Apparently the two have the same goals, but which is "best" to use?