5812 2
How to show only a single record with crystal report in ASP.NET MVC

I want to show only a single record from an employeeList by ID with crystal report in asp.net MVC. But I don't know how to do it. I can show a whole list. But I can't do it for a single ID. Please help.

...
Type
Question
5806 1
Updating / editing foreign key of a Child table in Entity Framework Core 1.1

ENTITY FRAMEWORK CORE 1.1

I just want to demonstrate my question, here it is.

I have two class. Let's say.

Class Owner has these properties:

...
Type
Question
5797 2
How to add windows authentication sql server connection string in Web Config?

I am currently using Entity Framework in my ASP.NET MVC web application, I would like to use windows authentication in SQL Server string, so how can do it?

Currently, I have web.Config configuration using username/password of SQL Server in the connection string as below

...
Type
Question
5706 0
Best Reporting Tool for ASP.NET (MVC, Core or Web-Forms)
In this article, I have listed all the best available free or paid reporting tools for asp.net core, asp.net mvc and asp.net web-forms, which you should consider for generating reports.
Type
Article
5699 0
Code First Migration with Entity framework
The article gives introduction and description of using code first migrations with Entity framework using ASP.NET MVC C#
Type
Article

5693 0
Model Validation in ASP.NET Core MVC (With Custom validation example)
In this article, I have explained about what is Model Validation and Model binding in ASP.NET Core MVC and how to validate form using Model validation in ASP.NET Core MVC.
Type
Article
5632 1
Bootstrap Pop Up Modal Validation in ASP.NET Core MVC
In this article, I have provided working example to validate form inside bootstrap pop-up modal in asp.net core MVC using Data Annotations and AjaxBeginForm
Type
Article
5602 1
Paging,Sorting and filtering in asp.net boiler plate?

I have downloaded asp.core project (MVC and angularjs version) and I would like to know how to implement paging sorting and filtering in asp.net boiler plate project using asp.net core

...
Type
Question
5565 1
Insert multiple data in multiple tables using single ActionResult in ASP.NET MVC?

I am creating a big assessment form for VISA purpose. Now there will be a section where users will be able to add their education info.

...

Type
Question
5539 2
How to save Product Order details with User Id?

I have a user table & I want whenever a user orders a product, its order should be saved in order table with user primary key, so what relationship I have to add in user and order table. please let me know

Suppose, this is my ActionMethod

public ActionResult Create( Student student)
{

if (ModelState.IsValid)
{
db.Students.Add(student);
db.SaveChanges();
return RedirectToAction("Index");
}

return View(student);
}

 Database Relationship image

 ...

Type
Question

Page 18 of 31