Mercurial > pub > bltoolkit
view UnitTests/Linq/Model/Patient.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.DataAccess; using BLToolkit.Mapping; namespace Data.Linq.Model { public class Patient { [PrimaryKey] public int PersonID; public string Diagnosis; [Association(ThisKey = "PersonID", OtherKey = "ID", CanBeNull = false)] public Person Person; public override bool Equals(object obj) { return Equals(obj as Patient); } public bool Equals(Patient other) { if (ReferenceEquals(null, other)) return false; if (ReferenceEquals(this, other)) return true; return other.PersonID == PersonID && Equals(other.Diagnosis, Diagnosis); } public override int GetHashCode() { unchecked { var result = PersonID; result = (result * 397) ^ (Diagnosis != null ? Diagnosis.GetHashCode() : 0); return result; } } } }