Posts by urlflavio • 477 points
14 posts
-
0
votes0
answers19
viewsQ: Limit access to objects in Postgres
I created a user in postgres so that a certain employee can run only one view available in the bank. I used the following query s: CREATE ROLE LOGIN_FUNCIONARIO WITH LOGIN PASSWORD '999999'…
-
2
votes1
answer255
viewsQ: Asp.Net Razor with Json
I have a question and I have researched several sites but I did not get the answer. I develop systems in .Net with C# in MVC standard and use the on-screen presentation in the traditional View with…
-
1
votes1
answer285
views -
1
votes1
answer194
viewsQ: Return Json - Angularjs
I am creating an Asp.Net Web.API application and the return of service is in Json. So far so good, it happens that the main object (Companies) is returning an internal object - citiesFiliais…
-
3
votes1
answer700
viewsQ: Change table column names created by Asp.Net Identity
My doubt is simple, but I am not able to solve it. It is possible to change the table columns name Aspnetusers that Identity creates in the database? Another question is, how to add new fields in…
-
10
votes2
answers525
views -
1
votes1
answer35
viewsQ: Webapi Project - . NET
I am developing an Asp.Net Webapi application (first REST application). So far everything is ok, even because I’m in the testing phase using Postman. I believe I must complete this first stage…
-
7
votes1
answer1103
viewsQ: Asp.Net MVC authentication using Formsauthentication
I am implementing authentication in my ASP.NET MVC application. I am using FormsAuthentication for this authentication of each user and for each logged in user 5 Sessions are assigned (Name,…
-
1
votes2
answers1616
viewsQ: How to Send Controller Checkbox?
I have a View where in a client list there is in the first column (table) a Checkbox so that it may be possible to select one or more customers and send to Controller. In View I am using the…
-
2
votes1
answer2251
viewsQ: MVC or SPA app
I have been working with MVC for the last two years, but lately I have been following the growth of SPA applications. After reading several articles on this subject I had a question, if I want to…
-
3
votes2
answers167
viewsQ: View with Ienumerable and Entityframework
I own a Sales entity and it has several fields (Iditem, Datavenda, Valorvenda, Taxadesconto, Idcliente, Idcategorito and etc). I already have all Views working for this entity(CRUD). Now I will…
-
2
votes2
answers808
viewsQ: Search Filter
I have an Items entity that relates to the product table and it is already in production and is working perfectly! Now I need to create a search report in which the user can determine through…
-
0
votes1
answer241
viewsQ: PHP Rest Application with Logged in User
I am developing an application in PHP Rest API. This application will be accessed via Web and Mobile. It happens that users must log in to be able to consume the Rest service. My question - How do I…
-
2
votes1
answer107
viewsQ: Get Total Relationship Items 1:N
I have two Product and Items tables - these tables have Father/Son relationship respectively. I would like to know how to get the total of items in the Items table knowing that each customer can own…