Posts by Leo • 376 points
16 posts
-
0
votes2
answers73
viewsA: Error calling webmethod
In the end I managed to solve the problem by typing the method signature Public Function AutoCompleteCodigo(ByVal _getDados As Dados) As String End Function and in javascript function…
-
1
votes2
answers73
viewsQ: Error calling webmethod
I’m creating a webmetod that will make the autocomplete of some fields on my screen, however I’m getting error 500 <System.Web.Services.WebMethod>…
-
1
votes1
answer366
viewsQ: Error in running update-database Migration
I am trying to run the creation of my database, but I am getting this error below and am not understanding the reason: The type 'Client' cannot be Mapped as defined because it maps inherited…
-
0
votes1
answer63
viewsQ: Variable interfering with value of other variable
Good afternoon Gentlemen. I’m facing a problem I’ve never seen before, below I have a view mapped in the EF with effluent var viewRelatorio = db.view.where(ra.DataBruta.Month ==…
-
1
votes1
answer132
viewsA: The Member with Identity '' does not exist in the Metadata Collection?
Trigger returned a select and the mapping did not expect a return and so was giving the error
-
0
votes1
answer132
viewsQ: The Member with Identity '' does not exist in the Metadata Collection?
I couldn’t find how to solve this problem between my base and my mapping using Fluent API. I have a Fluent API mapping of a certain pre-existing table in the client database, but this table has a…
-
4
votes1
answer1795
viewsA: What is the difference between the <b></b> and <Strong></Strong> tags?
In fact visually none, the difference this for physically disabled or should be, when a browser for blind identifies the word Strong, between the tags the reading is made with greater emphasis. But…
-
0
votes1
answer38
viewsA: Doubt about entities Asp.net mvc
try using the link below to see if it helps with your problem Fluent API and Migration
-
2
votes1
answer83
viewsQ: javascript result for method in parameterized controller
I am trying to send the result of a Webapi that is consumed via javascript on the page to a method in the controller that will make a persistence with this data this is javascript…
-
3
votes2
answers134
viewsQ: Is it possible to create Webapi without the MVC structure?
The title of the question itself defines my doubt, using VS2015 to create an API, it forces me to create the whole structure of MVC together. So I wonder if there is a way to create the API only…
-
0
votes0
answers566
viewsQ: Error with Entityframework preview
This is the message that is returning in the browser The Entity Framework Provider type 'System.Data.Entity.SqlServer.Sqlproviderservices, Entityframework.Sqlserver' Registered in the application…
-
1
votes2
answers411
viewsQ: Fluent API and Migration
I have the following scenario: public abstract class Pessoa { /* Propriedades do Pessoa*/ public Guid IdPessoa { get; set; } } public class Cliente : Pessoa { public Cliente() { IdPessoa =…
-
4
votes2
answers83
viewsQ: Persistence using Fluent API
How do I persist an address without having to pass on all customer information? Below is my address client mapping: HasMany(f => f.EnderecoList) .WithMany(e => e.ClienteList) .Map(me => {…
-
3
votes1
answer415
viewsQ: Modal bootstrap MVC 5
I’m trying to use the modal of Bootstrap, but I can’t make the window open in modal form with the style of the page, instead it opens as a page with no style and using the whole browser frame.…
-
2
votes1
answer209
viewsQ: Adding selected columns together
I have the following scenario: A table created in the Razor with several columns, where each row has a checkbox in place different from each other, and would like to do the checkbox sum clicked by…
-
3
votes0
answers327
viewsQ: EF mapping of Fluent API associative entity
I would like to know how to do a mapping without using ICollection, or may even be using, but would not want the bank to create a class, just to be able to connect the two classes. class Pessoa {…