I have a c # code that generates an xml with the digital signature, but when calling the function signedXml.ComputeSignature() it shows the following error:
Malformed Reference Element.
However, I searched for this error and...
When I create a class diagram in VS2017 from existing classes, the relationship link does not appear.
namespace CloudEye.Domain
{
public class Car
{
public CarPlate CarPlate { get; private set; }
public double Capacity...
I have a function that returns me a list of people with their personal / legal relationships. I have a PersonViewModel that is already mapped in the Autommapper layer ... When I call the GetJoinAll () function it has to return an IQueryable of P...
I'm looking for a PDF generator that meets some needs. These are:
Convert HTML to PDF
PDF cover may have margin other than the margin of other PDF pages
Ability to set header and footer for all pages
In some tests I was able to set on...
I'm having trouble displaying an Image in the datatable in my application.
I get the name of the image but it does not display.
"columns": [
{ "data": "Id", "name": "Id", "autoWidth": true },
{ "d...
I have a foreach going through my list and I want it to be true if it shows a message saying that this value already exists in the list and DO NOT STORE this value in the list, someone knows how to do ??
foreach (Agendamento agenda in Agenda...
I need to make a join between the person and person tables so that the Entity Framework core brings a corresponding record. I'll be clearer:
In the Person Person table, I classify my people record using an enum. I did this to save the Ids of...
My method of recovering cookies is bringing words with an unconfigured accent.
//Para gravar um Cookie
private static void Set(string key, string value)
{
var encValue = value;
var cookie = new HttpCookie(key, v...
I have a problem with a code for a meta language. It takes the string with the code in the target language and then saves it, with XDocument in an html document. My question is this: When I was using it in a test program, I gave an error...
I have a vs2017 solution with a main project that will use a dll project as a reference.
I created the model, business and repository folders in the dll project
Main project use the dll in the main class.
What goes into each folder in the...