Mercurial > pub > bltoolkit
view UnitTests/Linq/Exceptions/DmlTest.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 BLToolkit.Data.Linq; using NUnit.Framework; namespace Data.Exceptions { using Linq; using Linq.Model; [TestFixture] public class DmlTest : TestBase { [Test, ExpectedException(typeof(LinqException))] public void InsertOrUpdate1() { try { ForEachProvider(db => db.Doctor.InsertOrUpdate( () => new Doctor { PersonID = 10, Taxonomy = "....", }, p => new Doctor { Taxonomy = "...", })); } catch (Exception ex) { Assert.IsTrue(ex.Message.StartsWith("InsertOrUpdate method requires the 'Doctor' table to have a primary key.")); throw; } } [Test, ExpectedException(typeof(LinqException))] public void InsertOrUpdate2() { try { ForEachProvider(db => db.Patient.InsertOrUpdate( () => new Patient { Diagnosis = "....", }, p => new Patient { Diagnosis = "...", })); } catch (Exception ex) { Assert.IsTrue(ex.Message.StartsWith("InsertOrUpdate method requires the 'Patient.PersonID' field to be included in the insert setter.")); throw; } } } }