mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
19 lines
376 B
C#
19 lines
376 B
C#
|
using System.Data;
|
|||
|
using System.Data.Common;
|
|||
|
using Microsoft.Data.SqlClient;
|
|||
|
using Microsoft.Extensions.Configuration;
|
|||
|
using Microsoft.Extensions.Hosting;
|
|||
|
|
|||
|
namespace Wabbajack.BuildServer.Model.Models
|
|||
|
{
|
|||
|
public class DbFactory
|
|||
|
{
|
|||
|
|
|||
|
|
|||
|
public static IDbConnection Connect()
|
|||
|
{
|
|||
|
return new SqlConnection(Configuration);
|
|||
|
}
|
|||
|
}
|
|||
|
}
|