Mercurial > pub > bltoolkit
view UnitTests/Linq/Model/Patient.cs @ 3:1ef98bd70424
!bug 100 +3h
Исправление проблемы BLToolkit + mono 3.4
author | cin |
---|---|
date | Fri, 22 Aug 2014 17:34:46 +0400 |
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; } } } }