forked from smartstore/SmartStoreNET
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBaseEntity.cs
More file actions
103 lines (90 loc) · 2.56 KB
/
BaseEntity.cs
File metadata and controls
103 lines (90 loc) · 2.56 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations.Schema;
using System.Diagnostics.CodeAnalysis;
using System.Linq;
using System.Runtime.Serialization;
namespace SmartStore.Core
{
/// <summary>
/// Base class for entities
/// </summary>
[DataContract]
public abstract partial class BaseEntity
{
/// <summary>
/// Gets or sets the entity identifier
/// </summary>
[DataMember]
[DatabaseGenerated(DatabaseGeneratedOption.Identity)]
public int Id { get; set; }
[SuppressMessage("ReSharper", "PossibleNullReferenceException")]
public Type GetUnproxiedType()
{
var t = GetType();
if (t.AssemblyQualifiedName.StartsWith("System.Data.Entity."))
{
// it's a proxied type
t = t.BaseType;
}
return t;
}
/// <summary>
/// Transient objects are not associated with an item already in storage. For instance,
/// a Product entity is transient if its Id is 0.
/// </summary>
public virtual bool IsTransientRecord()
{
return Id == 0;
}
public override bool Equals(object obj)
{
return Equals(obj as BaseEntity);
}
protected virtual bool Equals(BaseEntity other)
{
if (other == null)
return false;
if (ReferenceEquals(this, other))
return true;
if (HasSameNonDefaultIds(other))
{
var otherType = other.GetUnproxiedType();
var thisType = GetUnproxiedType();
return thisType.Equals(otherType);
}
return false;
}
[SuppressMessage("ReSharper", "NonReadonlyMemberInGetHashCode")]
public override int GetHashCode()
{
if (IsTransientRecord())
{
return base.GetHashCode();
}
else
{
unchecked
{
// It's possible for two objects to return the same hash code based on
// identically valued properties, even if they're of two different types,
// so we include the object's type in the hash calculation
var hashCode = GetUnproxiedType().GetHashCode();
return (hashCode * 31) ^ Id.GetHashCode();
}
}
}
public static bool operator ==(BaseEntity x, BaseEntity y)
{
return Equals(x, y);
}
public static bool operator !=(BaseEntity x, BaseEntity y)
{
return !(x == y);
}
private bool HasSameNonDefaultIds(BaseEntity other)
{
return !this.IsTransientRecord() && !other.IsTransientRecord() && this.Id == other.Id;
}
}
}