Mercurial > pub > bltoolkit
view UnitTests/Linq/UserTests/FirstOrDefaultNullReferenceExceptionTest.cs @ 9:1e85f66cf767 default tip
update bltoolkit
author | nickolay |
---|---|
date | Thu, 05 Apr 2018 20:53:26 +0300 |
parents | f990fcb411a9 |
children |
line wrap: on
line source
using System; using System.Collections.Generic; using System.Linq; using BLToolkit.DataAccess; using BLToolkit.Mapping; using NUnit.Framework; namespace Data.Linq.UserTests { [TestFixture] public class FirstOrDefaultNullReferenceExceptionTest : TestBase { [TableName("GrandChild")] class Table1 { public int ChildID; } [TableName("Child")] class Table2 { public int ChildID; public int ParentID; [Association(ThisKey = "ChildID", OtherKey = "ChildID", CanBeNull = true)] public List<Table1> GrandChildren { get; set; } } [TableName("Parent")] class Table3 { public int ParentID { get; set; } [Association(ThisKey = "ParentID", OtherKey = "ParentID", CanBeNull = true)] public List<Table2> Children { get; set; } } [Test] public void Test() { using (var db = new TestDbManager()) { /* var query = from t3 in db.Parent //let t1 = t3.Children.SelectMany(x => x.GrandChildren) //let t2 = t3.Table2s.SelectMany(x => x.Table1s) select new { //c2 = t1.Count(), c1 = t3.Children.SelectMany(x => x.GrandChildren), }; */ var query = from t3 in db.GetTable<Table3>() let t1 = t3.Children.SelectMany(x => x.GrandChildren) //let t2 = t3.Table2s.SelectMany(x => x.Table1s) select new { c2 = t1.Count(), c1 = t3.Children.SelectMany(x => x.GrandChildren).Count(), }; query.FirstOrDefault(p => p.c1 > 10); } } } }