Posts by Claudio Neto • 33 points
6 posts
-
2
votes2
answers373
viewsQ: Inheritance in Entity Framework
I have the following structure: Table: Services (Services table) - with the common properties of all services + Type + Serviceid Table: Service 1 (Service table 1) - with service properties 1 Table:…
-
1
votes0
answers261
viewsQ: Access-Control-Allow-Origin in different environments
I have a very strange problem: the same code works locally and in Prod, but does not work in Homolog. Basically, the problem is Homolog (logo on login) is this: Xmlhttprequest cannot load…
-
0
votes1
answer34
viewsA: How does the integration of Google Maps into the web version work?
I ran a test and I was able to solve it. Basically, that’s what I did: C# public HttpResponseMessage Index(string key) { var response = new HttpResponseMessage(); response.Content = new…
-
0
votes1
answer34
viewsQ: How does the integration of Google Maps into the web version work?
Hello! My question may seem a little vague, but I didn’t know how to summarize my doubt in a few words. What I want to know is: how does Google Maps validate API_KEY and return the map in the web…
-
0
votes1
answer162
viewsQ: WCF + Web API - How to integrate?
I am developing a web api and need to integrate with a third party service that is a WCF. I have the definition of WSDL, integrated in my Solution as a service Ference, but is pointing to a physical…
-
0
votes1
answer287
viewsQ: Error saving Entity framework
I have a very basic problem, but I must be short of coffee to understand what is happening. I have such an entity: public class Client : BaseEntity<Client> { [Required] public string…