Click here to Skip to main content
15,892,005 members

Comments by Ram Nunna (Top 19 by date)

Ram Nunna 27-May-19 3:31am View    
Hi,

As per my understand you have 2 tables and both have relationship. You can use inner join between both tables you may get excepted result.

Select * from table1 t1
inner join table2 t2 on t1.col1=t2.col2

If you are not excepting this kindly provide proper information.

Thanks
Ram
Ram Nunna 11-Mar-19 4:52am View    
Could you please post your query.
Ram Nunna 11-Mar-19 4:50am View    
I personally feel that,you may be missed some settings in .net core pipeline in startup.cs. Re-check one more-time.
Ram Nunna 1-Mar-19 1:49am View    
It seems like your controller name is Home. Below sample code may help you.
app.UseMvc(routes =>
{
routes.MapRoute(
name: "default",
template: "{controller=Home}/{action=Index}/{Id?}"
);
});
Ram Nunna 1-Mar-19 1:40am View    
This link might help u.
https://www.codeproject.com/Articles/1087995/Inserting-JSON-Text-into-SQL-Server-Table