dotnet-dynamic-linq/PoweredSoft.DynamicLinq.ConsoleApp/Program.cs

23 lines
518 B
C#
Raw Normal View History

2018-03-26 21:42:49 -04:00
using PoweredSoft.DynamicLinq.Dal.Pocos;
using PoweredSoft.DynamicLinq.Helpers;
using PoweredSoft.DynamicLinq.Test;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Linq.Expressions;
using System.Text;
using System.Threading.Tasks;
namespace PoweredSoft.DynamicLinq.ConsoleApp
{
2018-03-27 20:06:04 -04:00
public class SelectExpression
{
static void Main(string[] args)
{
2018-04-10 21:08:27 -04:00
var selectTests = new SelectTests();
selectTests.SelectNullChecking();
2018-03-27 20:06:04 -04:00
}
}
}