Questions tagged as '.net-core'

1
answer

Problem installing Dot Net Core on Debian 9

I followed the official Microsoft documentation to install Dot Net Core on the server , says execute the following commands: wget -qO- https://packages.microsoft.com/keys/microsoft.asc | gpg --dearmor > microsoft.asc.gpg sudo mv microsoft...
asked by 13.11.2018 / 06:41
1
answer

SqlBulkCopy: Error inserting a DateTime

I have a table with this structure: Create Table dbo.DoesNotMakeSense ( Id Int Not Null Identity (1, 1), Name NVarChar(100), CreationDate DateTime Not Null, Constraint PK_DoesNotMakeSense Primary Key Clustered (Id Asc) ) On [Primary]...
asked by 15.03.2018 / 01:18
1
answer

Compatibility between .Net Core 2.0 and .Net Framework 4.7

I am creating some general purpose libraries (dll's), to be reused in .Net Core 2.0 and .Net Framework 4.7 projects. I want to have .Net Core projects in linux and .Net Framework 4.7 projects for Windows. A library developed with .Net Core 2.0 c...
asked by 20.08.2017 / 23:12
2
answers

.net Core auto executable

After creating my first console application with .Net Core 1.1 in Windows 10 with Visual Studio 2017 I copied to my server Linux - Ubuntu 16.04.3 LTS (already with the .Net Core framework installed). I have successfully executed the comma...
asked by 20.08.2017 / 00:25
1
answer

ArrayList in C # .Net Core: "The name of the type or namespace" ArrayList "was not found"

I'm trying to instantiate an object of the ArrayList class but the compiler does not recognize the class ... Use System.Collections and System.Collections.Generic but there's no way ... All the examples I see do not do anything tha...
asked by 14.10.2017 / 10:34
1
answer

What does this Net Core expression mean?

I still do not understand what this is, what they are called, and where to find documentation. public MyClass this[int number, params object[] arguments] { get { if (number < 0) { throw new ArgumentNullEx...
asked by 02.12.2017 / 19:13
1
answer

Unconscious accessibility in the property of the DataSet type

I'm trying to create the data layer with Entity Framework Core in my .net core web application but he has thrown me an error that I do not know what it is.    Severity Code Description Project File Line Suppression State   Error CS0053 Incons...
asked by 02.05.2018 / 01:40
2
answers

C # MVC Core.Net 2.1 A Layout shared between different web projects in the same solution

In C # .Net Core 2.1 I currently have a solution composed of several web projects (MVC) and these must be managed in a common front, that is to say that you must navigate through the pages of the different projects from a single application. Thi...
asked by 27.12.2018 / 21:38
0
answers

Tesseract OCR wrapper for net core?

I am looking for a tesseract wrapper that works with .net core; Currently, when I add the nuget tesseract package, I get the warning: Package 'Tesseract 3.0.2' was restored using '.NETFramework,Version=v4.6.1' instead of the project target fr...
asked by 26.11.2018 / 02:47
2
answers

Model ApplicationUser does not appear in the ModelClass list

When I try to add a scafolding with Entity Framework the class that is in .Models does not appear, it is called ApplicationUser and it is not in the list, how the charge? Listing:     
asked by 24.07.2018 / 21:02