DD.WellWorkover.Cloud/ConsoleApp1/Program.cs

25 lines
673 B
C#
Raw Normal View History

2022-04-28 15:04:13 +05:00
using AsbCloudDb;
using Microsoft.EntityFrameworkCore;
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
2022-04-22 17:17:38 +05:00
var db = ServiceFactory.MakeContext();
2022-04-28 15:04:13 +05:00
var q = db.DetectedOperations
.Include(o => o.OperationCategory)
.Where(o => true)
.SortBy(new string[] { "DateStart desc", "depthstart" });
var sql = q.ToQueryString();
var items = q.ToList();
2022-04-22 17:17:38 +05:00
Console.WriteLine("End of program");
Console.ReadLine();
2021-10-06 16:30:46 +05:00
}
}
}