Priya
64
Points
27
Posts
|
I am trying to use left join in Linq using ASP.NET Core and EntityFramework Core.
I have following situation with two tables:
Customer (id, firstname, lastname)
CustomerDetails (id, CustomerId, DetailText)
In SQL it works fine:
SELECT p.id, p.Firstname, p.Lastname, d.DetailText FROM Custome ...
Views:
218
Total Answered:
2
Total Marked As Answer:
0
Posted On:
20-Oct-2019 01:37
|
Smith
418
Points
119
Posts
|
I am using Microsoft Azure DebugConsole / Kudu.
Using the DebugConsole / Kudu I was able to edit the folder and transfer the files but I noticed that only 299 files were transferred.
I'm getting Error:
"There are 304 items in this directory, but maxViewItems is set to 299. You can increase maxViewIt ...
Views:
463
Total Answered:
2
Total Marked As Answer:
1
Posted On:
13-Sep-2019 06:16
|
kikme
30
Points
10
Posts
|
I'm using asp.net core to develop REST API and I have few enum values that to be expose to API response. And I'm able to do that but client developer don't know what are the enum's values. So I want to expose all enum values in the response.
Suppose I have following enum:
public enum niceEnum
{ ...
Views:
310
Total Answered:
2
Total Marked As Answer:
1
Posted On:
29-May-2019 09:35
|
Smith
418
Points
119
Posts
|
I am trying to run hangfire recurring job daily on 11.00 AM. Here is what I want to do-
RecurringJob.AddOrUpdate(() => MyMethod(), "* 11 * * *");
But it's always confusing cron expression. Is there any other way?
Views:
419
Total Answered:
1
Total Marked As Answer:
0
Posted On:
10-May-2019 01:39
|
Smith
418
Points
119
Posts
|
I'm getting following error when try to migrate db in my local machine DB:
A connection was successfully established with the server, but then an error occurred during the login process.
(provider: SSL Provider, error: 0 - The certificate chain was issued by an authority that is not trusted.)
...
Views:
688
Total Answered:
2
Total Marked As Answer:
1
Posted On:
24-Apr-2019 23:29
|
Smith
418
Points
119
Posts
|
I'm trying to execute long running process by using System.Threading.Tasks and calling it from MVC controller action:
new Task( () =>
{
// long runing process and fetching data using EntityFrameworkCore
}).Start();
I'm getting following error:
A second operation started on ...
Views:
957
Total Answered:
4
Total Marked As Answer:
1
Posted On:
19-Apr-2019 04:51
|
edx
58
Points
19
Posts
|
I have created new index from existing one by using following Query DSL:
POST _reindex
{
"source": {
"index": "myindex"
},
"dest": {
"index": "new_myindex"
}
}
Now, tried to search on new index but now I'm getting following error:
{
"error": {
"root_cause": [ ...
Views:
8853
Total Answered:
2
Total Marked As Answer:
2
Posted On:
29-Mar-2019 05:47
|
Smith
418
Points
119
Posts
|
I have web-service hosted on Azure. And I'm tried to request an endpoint that has long running process. I'm getting following error after around 2 minutes:
<h2>502 - Web server received an invalid response while acting as a gateway or proxy server.</h2>
<h3>There is a problem ...
Views:
7935
Total Answered:
2
Total Marked As Answer:
0
Posted On:
29-Mar-2019 02:08
|
edx
58
Points
19
Posts
|
I have user's birthday in datatime object format, how do I calculate their age in years?
Views:
7260
Total Answered:
3
Total Marked As Answer:
0
Posted On:
27-Mar-2019 02:45
|
Raj
18
Points
4
Posts
|
I'm using .netcore with vuejs development and with VS 2017. When try to build application, I'm getting following error:
MSB3073 The command "node node_modules/webpack/bin/webpack.js" exited with code
I have no idea what is happening here. Previously it was working fine and after upgading package ...
Views:
8434
Total Answered:
1
Total Marked As Answer:
1
Posted On:
03-Dec-2018 04:44
|