Mercurial > pub > bltoolkit
diff UnitTests/Linq/Exceptions/JoinTest.cs @ 0:f990fcb411a9
Копия текущей версии из github
author | cin |
---|---|
date | Thu, 27 Mar 2014 21:46:09 +0400 |
parents | |
children |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/UnitTests/Linq/Exceptions/JoinTest.cs Thu Mar 27 21:46:09 2014 +0400 @@ -0,0 +1,30 @@ +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(); + }); + } + } +}