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 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207
|
//---------------------------------------------------------------------
// <copyright file="NullEntityWrapper.cs" company="Microsoft">
// Copyright (c) Microsoft Corporation. All rights reserved.
// </copyright>
//
// @owner Microsoft
// @backupOwner Microsoft
//---------------------------------------------------------------------
namespace System.Data.Objects.Internal
{
using System.Data.Metadata.Edm;
using System.Data.Objects.DataClasses;
using System.Diagnostics;
/// <summary>
/// Defines an entity wrapper that wraps an entity with a null value.
/// This is a singleton class for which the same instance is always returned
/// any time a wrapper around a null entity is requested. Objects of this
/// type are immutable and mutable to allow this behavior to work correctly.
/// </summary>
internal class NullEntityWrapper : IEntityWrapper
{
private static IEntityWrapper s_nullWrapper = new NullEntityWrapper();
// Private constructor prevents anyone else from creating an instance
private NullEntityWrapper()
{
}
/// <summary>
/// The single instance of this class.
/// </summary>
internal static IEntityWrapper NullWrapper
{
get { return s_nullWrapper; }
}
public RelationshipManager RelationshipManager
{
get
{
Debug.Fail("Cannot access RelationshipManager from null wrapper.");
return null;
}
}
public bool OwnsRelationshipManager
{
get
{
Debug.Fail("Cannot access RelationshipManager from null wrapper.");
return false;
}
}
public object Entity
{
get { return null; }
}
public EntityEntry ObjectStateEntry
{
get { return null; }
set { }
}
public void CollectionAdd(RelatedEnd relatedEnd, object value)
{
Debug.Fail("Cannot modify collection from null wrapper.");
}
public bool CollectionRemove(RelatedEnd relatedEnd, object value)
{
Debug.Fail("Cannot modify collection from null wrapper.");
return false;
}
public EntityKey EntityKey
{
get
{
Debug.Fail("Cannot access EntityKey from null wrapper.");
return null;
}
set
{
Debug.Fail("Cannot access EntityKey from null wrapper.");
}
}
public EntityKey GetEntityKeyFromEntity()
{
Debug.Assert(false, "Method on NullEntityWrapper should not be called");
return null;
}
public ObjectContext Context
{
get
{
Debug.Fail("Cannot access Context from null wrapper.");
return null;
}
set
{
Debug.Fail("Cannot access Context from null wrapper.");
}
}
public MergeOption MergeOption
{
get
{
Debug.Fail("Cannot access MergeOption from null wrapper.");
return MergeOption.NoTracking;
}
}
public void AttachContext(ObjectContext context, EntitySet entitySet, MergeOption mergeOption)
{
Debug.Fail("Cannot access Context from null wrapper.");
}
public void ResetContext(ObjectContext context, EntitySet entitySet, MergeOption mergeOption)
{
Debug.Fail("Cannot access Context from null wrapper.");
}
public void DetachContext()
{
Debug.Fail("Cannot access Context from null wrapper.");
}
public void SetChangeTracker(IEntityChangeTracker changeTracker)
{
Debug.Fail("Cannot access ChangeTracker from null wrapper.");
}
public void TakeSnapshot(EntityEntry entry)
{
Debug.Fail("Cannot take snapshot of using null wrapper.");
}
public void TakeSnapshotOfRelationships(EntityEntry entry)
{
Debug.Fail("Cannot take snapshot using null wrapper.");
}
public Type IdentityType
{
get
{
Debug.Fail("Cannot access IdentityType from null wrapper.");
return null;
}
}
public void EnsureCollectionNotNull(RelatedEnd relatedEnd)
{
Debug.Fail("Cannot modify collection from null wrapper.");
}
public object GetNavigationPropertyValue(RelatedEnd relatedEnd)
{
Debug.Fail("Cannot access property using null wrapper.");
return null;
}
public void SetNavigationPropertyValue(RelatedEnd relatedEnd, object value)
{
Debug.Fail("Cannot access property using null wrapper.");
}
public void RemoveNavigationPropertyValue(RelatedEnd relatedEnd, object value)
{
Debug.Fail("Cannot access property using null wrapper.");
}
public void SetCurrentValue(EntityEntry entry, StateManagerMemberMetadata member, int ordinal, object target, object value)
{
Debug.Fail("Cannot set a value onto a null entity.");
}
public bool InitializingProxyRelatedEnds
{
get
{
Debug.Fail("Cannot access flag on null wrapper.");
return false;
}
set
{
Debug.Fail("Cannot access flag on null wrapper.");
}
}
public void UpdateCurrentValueRecord(object value, EntityEntry entry)
{
Debug.Fail("Cannot UpdateCurrentValueRecord on a null entity.");
}
public bool RequiresRelationshipChangeTracking
{
get { return false; }
}
}
}
|