In this article I will explain with an example, how to use Web API without Entity Framework in ASP.Net Core MVC.
This article makes use of ADO.Net as an alternative to Entity Framework for connecting Web API to SQL Server database.
Note: If you want to learn about connecting and using Entity Framework in Web API, please refer my article ASP.Net Core MVC: Web API Database example.
 
 
Database
I have made use of the following table Customers with the schema as follows.
ASP.Net Core MVC: Using Web API without Entity Framework
 
I have already inserted few records in the table.
ASP.Net Core MVC: Using Web API without Entity Framework
 
Note: You can download the database table SQL by clicking the download link below.
          Download SQL file
 
 
Model
The CustomerModel class consists of the following properties.
public class CustomerModel
{
    public int CustomerId { get; set; }
    public string Name { get; set; }
    public string Country { get; set; }
}
 
 
Controller
The Web API Controller
In order to add a Web API Controller, you will need to Right Click the Controllers folder in the Solution Explorer and click on Add and then NewItem.
Now from the Add New Item window, choose the API Controller – Empty option and then give it a suitable name and click Add.
Note: For more details on how to use Web API in ASP.Net Core MVC, please refer my article .Net Core: Step by Step Web API Tutorial for Beginners in ASP.Net Core MVC.
 
Namespaces
You will need to import the following namespace in the Web API Controller.
using System.Data.SqlClient;
 
The Web API Controller consists of following Action method.
Action method for handling GET operation
Inside this Action method, the records are fetched from the Customers Table using SqlDataReader and then using WHILE Loop, the records are copied into the Generic List collection of CustomerModel class objects.
Note: This method is decorated with Route attribute which defines its Route for calling the Web API method and HttpGet attribute which signifies that the method will accept HTTP GET requests.
 
Finally, the Generic List Collection of CustomerModel class objects are returned.
[Route("api/[controller]")]
[ApiController]
public class CustomerAPIController : ControllerBase
{
    [Route("GetCustomers")]
    [HttpGet]
    public List<CustomerModel> GetCustomers()
    {
        List<CustomerModel> customers = new List<CustomerModel>();
        string constr = @"Data Source=.\SQL2019;Initial Catalog=AjaxSamples;Integrated security=true";
        using (SqlConnection con = new SqlConnection(constr))
        {
            string query = "SELECT CustomerId, Name, Country FROM Customers";
            using (SqlCommand cmd = new SqlCommand(query, con))
            {
                con.Open();
                using (SqlDataReader sdr = cmd.ExecuteReader())
                {
                    while (sdr.Read())
                    {
                        customers.Add(new CustomerModel
                        {
                            CustomerId = int.Parse(sdr["CustomerId"].ToString()),
                            Name = sdr["Name"].ToString(),
                            Country = sdr["Country"].ToString()
                        });
                    }
                }
                con.Close();
            }
        }
 
        return customers;
    }
}
 
The MVC Controller
Namespaces
You will need to import the following namespaces in the MVC Controller.
using System.Net.Http;
using Newtonsoft.Json;
 
The Controller consists of following Action method.
Action method for handling GET operation
Inside this Action method, the URL of the Web API along with its Controller method is passed to the GetAsync method of the HttpClient class.
The GetAsync method of the HttpClient class calls the Web API’s Controller method i.e. the GetCustomers method and returns the JSON string which is then de-serialized to Generic List of CustomerModel class objects and finally, returned to the View.
public class HomeController : Controller
{
    public IActionResult Index()
    {
        List<CustomerModel> customers = new List<CustomerModel>();
        string apiUrl = "http://localhost:44318/api/CustomerAPI/GetCustomers";
        HttpClient client = new HttpClient();
        HttpResponseMessage response = client.GetAsync(apiUrl).Result;
        if (response.IsSuccessStatusCode)
        {
            customers = JsonConvert.DeserializeObject<List<CustomerModel>>(response.Content.ReadAsStringAsync().Result);
        }
        return View(customers);
    }
}
 
 
View
Inside the View, in the very first line the CustomerModel class is declared as IEnumerable which specifies that it will be available as a Collection.
For displaying the records, an HTML Table is used. A loop will be executed over the Model which will generate the HTML Table rows with the Customer records.
@using WebAPI_ADO_MVC_Core.Models;
@model IEnumerable<CustomerModel>
@{
 
    Layout = null;
}
 
<!DOCTYPE html>
 
<html>
<head>
    <meta name="viewport" content="width=device-width" />
    <title>Index</title>
</head>
<body>
    <table cellpadding="0" cellspacing="0">
        <tr>
            <th>CustomerId</th>
            <th>Name</th>
            <th>Country</th>
        </tr>
        @foreach (CustomerModel customer in Model)
        {
            <tr>
                <td>@customer.CustomerId</td>
                <td>@customer.Name</td>
                <td>@customer.Country</td>
            </tr>
        }
    </table>
</body>
</html>
 
 
Screenshot
ASP.Net Core MVC: Using Web API without Entity Framework
 
 
Downloads