Search
 
SCRIPT & CODE EXAMPLE
 

CSHARP

autfac .net 6

var builder = WebApplication.CreateBuilder(args);

// The UseServiceProviderFactory call attaches the
// Autofac provider to the generic hosting mechanism.

builder.Host.UseServiceProviderFactory(new AutofacServiceProviderFactory());

// Add services to the container.
builder.Services.AddControllersWithViews();

//Register your own things directly with Autofac here
builder.Host.ConfigureContainer<ContainerBuilder>(builder => builder.RegisterType<Service>().As<IService>());

var app = builder.Build();
Comment

PREVIOUS NEXT
Code Example
Csharp :: sorting list by date time dec in c# 
Csharp :: replace multiple characters in string c# 
Csharp :: group by unique c# 
Csharp :: asp.net format datetime 
Csharp :: get number of days between two dates c# 
Csharp :: unity model ripper 
Csharp :: c# split string by index 
Csharp :: array declaration in c# 
Csharp :: c# make file not read only 
Csharp :: static class can have non static member in c# 
Csharp :: instantiate prefab unity 
Csharp :: c# get list object type of generic list 
Csharp :: how to turn components on and off in unity through code 
Csharp :: c# get date without time 
Csharp :: c# datetime remove days 
Csharp :: interface property implementation c# 
Csharp :: c# object is in object list 
Csharp :: c# get random index from list 
Csharp :: how to sort a dictionary by value in c# 
Csharp :: center mouse unity 
Csharp :: c# write line 
Csharp :: c# clear console read chache 
Csharp :: serenity frameword order column 
Csharp :: c# caractère cacher mot de passe 
Csharp :: C# Calculate MD5 Checksum For A File 
Csharp :: unity draw waypoints path 
Csharp :: unity reload active scene 
Csharp :: C# show text in another form 
Csharp :: how to add gravity without rb in unity 
Csharp :: unity how to make gamemanager instance 
ADD CONTENT
Topic
Content
Source link
Name
5+2 =