10 Days of .Net Aspire: Day 4 — Using Oracle Component in Visual Studio
2024-9-2 20:9:55 Author: hackernoon.com(查看原文) 阅读量:0 收藏

A Step-by-step guide on how to use the .Net Aspire Oracle component in Visual Studio.

.Net Aspire framework is used to develop cloud and production-ready distributed applications. It consists of components to handle cloud-native concerns such as Redis, Postgres, etc.

Prerequisites

Objectives

Learn how to create a starter project using .Net Aspire with the Oracle EF Core component.

Github Sample: The solution structure is divided into the following projects:-

  • DotnetAspireChallenge.ApiService
  • DotnetAspireChallenge.AppHost
  • DotnetAspireChallenge.ServiceDefaults
  • DotnetAspireChallenge.Web

Getting Started

Step 1: Install the following NuGet package

Install the following Nuget package into the subsequent project “DotnetAspireChallenge.AppHost

dotnet add package Aspire.Hosting.Oracle

In the above project, register a server database and consume the Oracle connection using the following code.

    var oracle = builder.AddOracle("oracle")
                        .AddDatabase("oracledb");
    
    var apiService = builder.AddProject<Projects.DotnetAspireChallenge_ApiService>("apiservice")
        .WithReference(oracle);

Step 2: Install another NuGet package

Install the following Nuget package into the subsequent project “DotnetAspireChallenge.ApiService

dotnet add package Aspire.Oracle.EntityFrameworkCore

then register the context into the Program.cs file as follows

    
    builder.AddOracleDatabaseDbContext<OracleDbContext>("oracledb");

Step 3: Create a “Customer” class

    public class Customer
    {
        public int Id { get; set; }
        
        [Required]
        public string Title { get; set; } = string.Empty;
        
        [Required]
        public string Description { get; set; } = string.Empty;
    }

Step 4: Create an extension class

Create an extension class and register a minimal API get method to demonstrate the Oracle EF context usage in the API Service

    public static class AspireOracleExtension
    {
        public static void MapOracleAspireEndpoint(this WebApplication app)
        {
            app.MapGet("/oracle", async (OracleDbContext oracleDbContext) =>
            {
                  await oracleDbContext.Customer.AddAsync(new Customer()
                  {
                      Title = "[email protected]",
                      Description = "sukh"
                  });
                  int rows = await oracleDbContext.SaveChangesAsync();
                  if (rows > 0)
                  {
                      return await oracleDbContext.Customer.FirstOrDefaultAsync();
                  }
                  else
                  {
                      return null;
                  }
            });
    
        }
    }
    
    
    internal class OracleDbContext(DbContextOptions options) : DbContext(options)
    {
        public DbSet<Customer> CustomersPgsql => Set<Customer>();
    }

and finally, register in the Program.cs file

    app.MapOracleAspireEndpoint();

Step 5: Hit the GET endpoint

Finally, navigate to the GET URL shown below in your browser. It will insert the specified customer into the Oracle database, retrieve the most recently inserted row, and display it as a response.

Add additional connection string properties using the JSON syntax

    {
      "Aspire": {
        "Oracle": {
          "EntityFrameworkCore": {
            "DisableHealthChecks": true,
            "DisableTracing": true,
            "DisableMetrics": false,
            "DisableRetry": false,
            "Timeout": 30
          }
        }
      }
    }

Congratulations..!! You’ve successfully integrated the Oracle component into the .Net Aspire project.


文章来源: https://hackernoon.com/10-days-of-net-aspire-day-4-using-oracle-component-in-visual-studio?source=rss
如有侵权请联系:admin#unsafe.sh