Mercurial > pub > bltoolkit
view UnitTests/Linq/Exceptions/JoinTest.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.Linq; using NUnit.Framework; using BLToolkit.Data.Linq; namespace Data.Exceptions { using Linq; using Linq.Model; [TestFixture] public class JoinTest : TestBase { [Test, ExpectedException(typeof(LinqException))] public void InnerJoin() { ForEachProvider(typeof(NotSupportedException), db => { var q = from p1 in db.Person join p2 in db.Person on new Person { FirstName = "", ID = p1.ID } equals new Person { ID = p2.ID } where p1.ID == 1 select new Person { ID = p1.ID, FirstName = p2.FirstName }; q.ToList(); }); } } }