Mercurial > pub > bltoolkit
view UnitTests/Linq/Model/Patient.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.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; } } } }