forked from ddrilling/AsbCloudServer
26 lines
636 B
C#
26 lines
636 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Globalization;
|
|
using System.IO;
|
|
using System.Linq;
|
|
using AsbCloudDb.Model;
|
|
using AsbCloudDb;
|
|
using Google.Apis.Drive.v3.Data;
|
|
using Microsoft.EntityFrameworkCore;
|
|
|
|
namespace ConsoleApp1
|
|
{
|
|
//var options = new DbContextOptionsBuilder<AsbCloudDbContext>()
|
|
// .UseNpgsql("Host=localhost;Database=postgres;Username=postgres;Password=q;Persist Security Info=True")
|
|
// .Options;
|
|
//var context = new AsbCloudDbContext(options);
|
|
|
|
class Program
|
|
{
|
|
static void Main(/*string[] args*/)
|
|
{
|
|
Console.ReadKey();
|
|
}
|
|
}
|
|
}
|