Mercurial > pub > bltoolkit
view UnitTests/Linq/Exceptions/DmlTest.cs @ 8:a34cfdde80d6
removed strong signing
added FrameworkPathOverride for linux builds
author | cin |
---|---|
date | Wed, 29 Nov 2017 12:43:52 +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; } } } }