DD.WellWorkover.Cloud/ConsoleApp1/Program.cs

30 lines
801 B
C#
Raw Normal View History

using AsbCloudDb.Model;
using AsbCloudInfrastructure.Services.DailyReport;
using Microsoft.EntityFrameworkCore;
2022-05-05 10:06:15 +05:00
using System;
2022-04-22 17:17:38 +05:00
using System.Linq;
namespace ConsoleApp1
{
class Program
2021-10-03 20:08:17 +05:00
{
2021-07-28 09:47:13 +05:00
static void Main(/*string[] args*/)
{
2022-04-12 10:01:56 +05:00
// use ServiceFactory to make services
var db = ServiceFactory.Context;
//var d = db.TelemetryDataSaubStats.ToList();
2022-03-17 16:56:13 +05:00
//db.RefreshMaterializedViewAsync<TelemetryDataSaubStat>().Wait();
2022-05-05 10:06:15 +05:00
var d = db.WellSectionTypes
.Include(e => e.DrillParamsCollection)
.Include(e => e.WellComposites)
.Include(e => e.WellOperations)
.ToList();
Console.WriteLine("End of Test");
Console.ReadLine();
2021-10-06 16:30:46 +05:00
}
}
}