EntityCollectionNonGeneric Class |
Namespace: SD.LLBLGen.Pro.ORMSupportClasses
The EntityCollectionNonGeneric type exposes the following members.
Name | Description | |
---|---|---|
EntityCollectionNonGeneric() |
Initializes a new instance of the EntityCollectionNonGeneric class.
| |
EntityCollectionNonGeneric(IEntityFactory2) |
CTor
| |
EntityCollectionNonGeneric(SerializationInfo, StreamingContext) |
Protected CTor for deserialization
|
Name | Description | |
---|---|---|
ActiveContext |
Gets / sets the active context this entity collection is in. Setting this property is not adding the entity collection to the context,
it will make contained entities be added to the passed in context. If the entity collection is already in a context, setting this property has
no effect. Setting this property is done by framework code, use the Context's Add/Get methods to work with contexts and entity collections.
(Inherited from CollectionCore<T>.) | |
AllowEdit |
Default: true. If set to false, entities inside this collection won't be editable in a complex databinding scenario.
(Inherited from CollectionCore<T>.) | |
AllowNew |
Default: true. If set to false, no new entities will be added through databinding.
(Inherited from CollectionCore<T>.) | |
AllowRemove |
Default: false. If set to true, entities can be removed through databinding.
(Inherited from CollectionCore<T>.) | |
Capacity |
Gets / sets the initial capacity of the entity collection.
(Inherited from CollectionCore<T>.) | |
ConcurrencyPredicateFactoryToUse |
Gets / sets the IConcurrencyPredicateFactory instance to use when creating entity objects during a GetMulti() call or when AddNew is called.
(Inherited from CollectionCore<T>.) | |
ContainingEntity |
Gets the entity which contains this collection (e.g. Customer, if this collection is the Customer's Orders collection), or null if this
collection isn't part of any entity.
(Inherited from EntityCollectionBase2<TEntity>.) | |
ContainingEntityMappedField |
Gets the name of the field mapped onto the relation in the opposite entity which is represented by this collection, if this collection is
contained by an entity. E.g. it will return "Customer" if the relation Customer - Order has the field 'Customer' mapped onto it in Order and
this collection is the Orders collection in Customer. If this collection isn't contained in any entity, an empty string is returned.
(Inherited from CollectionCore<T>.) | |
ContainsDirtyContents |
Returns true if this collection contains dirty objects. If this collection contains dirty objects, an
already filled collection should not be refreshed until a save is performed. This property is calculated in real time
and can be time consuming when the collection contains a lot of objects. Use this property only in cases when the value
of this property is used to do a refetch or not.
(Inherited from EntityCollectionBase2<TEntity>.) | |
ContainsListCollection |
Gets a value indicating whether the collection is a collection of IList objects.
(Inherited from EntityCollectionBase2<TEntity>.) | |
Count |
Gets the number of elements contained in the ICollection<T>.
(Inherited from CollectionCore<T>.) | |
DefaultView |
Gets the default view for this entitycollection. The returned value is the same instance every time this property is read.
It's an entity view without a filter or a sorter.
(Inherited from EntityCollectionBase2<TEntity>.) | |
DeserializationInProgress |
Gets or sets a value indicating whether [deserialization in progress].
(Inherited from CollectionCore<T>.) | |
DirtyEntities |
Returns a readonly collection of entities which are flagged as dirty.
This collection is determined on the fly, you can use this collection to remove dirty entities from this entity collection.
(Inherited from CollectionCore<T>.) | |
DoNotPerformAddIfPresent |
When set to true, an entity passed to Add() or Insert() will be tested if it's already present. If so, the index is returned and the
object is not added again. If set to false (default) this check is not performed. Setting this property to true can slow down fetch logic.
(Inherited from CollectionCore<T>.) | |
EntityFactoryToUse |
The EntityFactory2 to use when creating entity objects when bound to a grid and AddNew is enabled.
(Inherited from EntityCollectionBase2<TEntity>.) | |
EntityFactoryToUseInternal |
Gets or sets the entity factory to use
(Inherited from EntityCollectionBase2<TEntity>.) | |
EntityValidatorToUse | Obsolete.
Obsolete. Collections don't store validator objects anymore. Present to make sure users can continue designing their forms in vs.net
(Inherited from CollectionCore<T>.) | |
IsReadOnly |
Gets a value indicating whether the ICollection<T> is read-only.
(Inherited from CollectionCore<T>.) | |
Item |
Gets or sets the object at the specified index.
(Inherited from CollectionCore<T>.) | |
Items |
Items contained by this collection. Returns simply this instance.
(Inherited from CollectionCore<T>.) | |
RemovedEntitiesTracker |
Gets or sets the entity collection which should be used as removed entities tracker. If this property is set to an IEntityCollection2 instance,
all entities which are removed from this collection are marked for deletion and placed in this removed entities tracker collection.
This collection can then later on be used to delete these entities from the database in one go.
(Inherited from EntityCollectionBase2<TEntity>.) | |
RemovedEntitiesTrackerInternal |
Gets or sets the removal tracker internal.
(Inherited from EntityCollectionBase2<TEntity>.) | |
Site |
Gets or sets the ISite associated with the IComponent.
(Inherited from CollectionCore<T>.) | |
SuppressListChangedEventsInternal |
Gets or sets a value indicating whether [surpress list changed events].
(Inherited from CollectionCore<T>.) | |
ValidatorToUse | Obsolete.
Obsolete. Collections don't store validator objects anymore. Present to make sure users can continue designing their forms in vs.net
(Inherited from CollectionCore<T>.) |
Name | Description | |
---|---|---|
Add |
Adds an item to the ICollection<T>.
(Inherited from CollectionCore<T>.) | |
AddContainedEntitiesToContext |
Adds the contained entities to the active set context.
(Inherited from CollectionCore<T>.) | |
AddNew |
Will add a new entity to the list, will set its parent collection property so CancelEdit will remove
it from the list again, and will set its flag that it is added by databinding.
(Inherited from EntityCollectionBase2<TEntity>.) | |
AddRange |
Adds the range of objects passed in.
(Inherited from CollectionCore<T>.) | |
Clear() |
Removes all items from the ICollection<T>.
(Inherited from CollectionCore<T>.) | |
Clear(Boolean) |
Removes all items from the ICollection<T>.
(Inherited from CollectionCore<T>.) | |
Contains |
Determines whether the ICollection<T> contains a specific value.
(Inherited from CollectionCore<T>.) | |
CopyTo | (Inherited from CollectionCore<T>.) | |
CreateDefaultEntityView |
Creates the default entity view instance. By default it creates a new EntityView2(Of TEntity) instance, passing in this collection.
(Inherited from EntityCollectionBase2<TEntity>.) | |
CreateHierarchicalProjection(Dictionary<Type, IEntityCollection2>) |
Creates a hierarchical projection of all the data in this collection and for each type in the complete graph found starting with each entity in
this collection. Per entity type found, an entry is stored inside the destination dictionary. It will simply project every data element.
(Inherited from EntityCollectionBase2<TEntity>.) | |
CreateHierarchicalProjection(DataSet) |
Creates a hierarchical projection of all the data in this collection and for each type in the complete graph found starting with each entity in
this collection. Per entity type found, a new datatable is created inside destination or if one with the name of the entity is already present,
that one is used. It will simply project every data element.
(Inherited from EntityCollectionBase2<TEntity>.) | |
CreateHierarchicalProjection(List<IViewProjectionData>, Dictionary<Type, IEntityCollection2>) |
Creates a hierarchical projection of all the data in this view and for each type in the complete graph found starting with each entity in this view,
using the viewProjections data passed in. Per entity type found, an entry is stored inside the destination dictionary.
(Inherited from EntityCollectionBase2<TEntity>.) | |
CreateHierarchicalProjection(List<IViewProjectionData>, DataSet) |
Creates a hierarchical projection of all the data in this collection and for each type in the complete graph found starting with each entity in this
collection, using the collectionProjections data passed in. Per entity type found, a new datatable is created inside destination or if one with
the name of the entity is already present, that one is used.
(Inherited from EntityCollectionBase2<TEntity>.) | |
CreateView() |
Creates a new EntityView2 object of the right type on this collection with no filter nor sorter applied.
(Inherited from EntityCollectionBase2<TEntity>.) | |
CreateView(IPredicate) |
Creates a new EntityView2 object of the right type on this collection with the passed in filter applied
(Inherited from EntityCollectionBase2<TEntity>.) | |
CreateView(IPredicate, ISortExpression) |
Creates a new EntityView2 object of the right type on this collection with the passed in filter and sorter applied to it.
(Inherited from EntityCollectionBase2<TEntity>.) | |
CreateView(IPredicate, ISortExpression, PostCollectionChangeAction) |
Creates a new EntityView2 object of the right type on this collection with the passed in filter and sorter applied to it and the
dataChangeAction set to the passed in value.
(Inherited from EntityCollectionBase2<TEntity>.) | |
DeserializeOwnedData |
Method which restores owned data - i.e. considered private to this entity
and not shared with any external object
(Inherited from EntityCollectionBase2<TEntity>.) | |
Dispose() |
Disposes this instance.
(Inherited from CollectionCore<T>.) | |
Dispose(Boolean) |
Releases unmanaged and - optionally - managed resources
(Inherited from CollectionCore<T>.) | |
Equals | Determines whether the specified object is equal to the current object. (Inherited from Object.) | |
Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.) | |
FindMatches |
Gets all indices of all the entities in the current order of this collection which match the passed in filter.
(Inherited from CollectionCore<T>.) | |
GetEntityDescription |
Gets the entity description for the entity passed in.
(Inherited from EntityCollectionBase2<TEntity>.) | |
GetEnumerator |
Returns an enumerator that iterates through the collection.
(Inherited from CollectionCore<T>.) | |
GetHashCode | Serves as the default hash function. (Inherited from Object.) | |
GetList |
Returns an IList that can be bound to a data source from an object that does not implement an IList itself.
(Inherited from EntityCollectionBase2<TEntity>.) | |
GetObjectData |
ISerializable member.
(Inherited from EntityCollectionBase2<TEntity>.) | |
GetSchema |
Produce the schema, always return null, as the XmlSerializer object otherwise can't handle our code.
(Inherited from EntityCollectionBase2<TEntity>.) | |
GetType | Gets the Type of the current instance. (Inherited from Object.) | |
IndexOf |
Determines the index of a specific item in the IList<T>.
(Inherited from CollectionCore<T>.) | |
InitCoreClass |
Inits the core class.
(Inherited from CollectionCore<T>.) | |
Insert |
Inserts an item to the IList<T> at the specified index.
(Inherited from CollectionCore<T>.) | |
MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object.) | |
OnDeserialized |
Called at the end of the deserialization constructor. Method is used when this object is deserialized. Override this method to
tap into the deserialization sequence. (binary/soap formatter specific).
(Inherited from CollectionCore<T>.) | |
OnEntityAdded |
Called at the end of the Add or Insert routine which adds an entity to this collection. Will raise EntityAdded event.
(Inherited from CollectionCore<T>.) | |
OnEntityAdding |
Called at the start of the Add or Insert routine which adds an entity to this collection. Will raise EntityAdding event.
(Inherited from CollectionCore<T>.) | |
OnEntityInListOnEntityContentsChanged |
Event handler for the EntityContentsChanged event.
(Inherited from CollectionCore<T>.) | |
OnEntityRemoved |
Called at the end of a remove routine which removes an entity from this collection. Will raise EntityRemoved event.
(Inherited from CollectionCore<T>.) | |
OnEntityRemoving |
Called at the start of a remove routine which removes an entity from this collection. Will raise EntityRemoving event.
(Inherited from CollectionCore<T>.) | |
OnGetObjectData |
Called at the end of GetObjectData. Method is used when this object is serialized. Override this method to
tap into the serialization sequence. (binary/soap formatter specific).
(Inherited from CollectionCore<T>.) | |
OnListChanged |
Called when [list changed].
(Inherited from CollectionCore<T>.) | |
PerformAddToActiveContext |
Performs the add action to the active context for this collection
(Inherited from CollectionCore<T>.) | |
PerformSetRelatedEntity |
Performs the set related entity action on the passed in entity. This action is delegated to an inheritor.
(Inherited from EntityCollectionBase2<TEntity>.) | |
PerformUnsetRelatedEntity |
Performs the unset related entity action on the passed in entity. This action is delegated to an inheritor.
(Inherited from EntityCollectionBase2<TEntity>.) | |
PlaceInRemovedEntitiesTracker |
Places the item in the set RemovedEntitiesTracker.
(Inherited from EntityCollectionBase2<TEntity>.) | |
ReadXml(String) |
Will fill the entity collection and its containing members (recursively) with the data stored in the XmlNode passed in. The XmlNode has to
be filled with Xml in the format written by IEntityCollection2.WriteXml() and the Xml has to be compatible with the structure of this entity collection.
(Inherited from EntityCollectionBase2<TEntity>.) | |
ReadXml(XmlNode) |
Will fill the entity collection and its containing members (recursively) with the data stored in the XmlNode passed in. The XmlNode has to
be filled with Xml in the format written by IEntityCollection2.WriteXml() and the Xml has to be compatible with the structure of this entity collection.
(Inherited from EntityCollectionBase2<TEntity>.) | |
ReadXml(XmlReader) |
Constructs an object graph with this object as the root from the xml contained by the passed in XmlReader object.
(Inherited from EntityCollectionBase2<TEntity>.) | |
ReadXml(XmlReader, XmlFormatAspect) |
Constructs an object graph with this object as the root from the xml contained by the passed in XmlReader object.
(Inherited from EntityCollectionBase2<TEntity>.) | |
Remove |
Removes the first occurrence of a specific object from the ICollection<T>.
(Inherited from CollectionCore<T>.) | |
RemoveAt |
Removes the IList<T> item at the specified index.
(Inherited from CollectionCore<T>.) | |
RemoveRange |
Removes the elements in the range specified from this collection.
(Inherited from CollectionCore<T>.) | |
SerializeOwnedData |
Method which restores owned data - i.e. considered private to this collection
and not shared with any external object
(Inherited from EntityCollectionBase2<TEntity>.) | |
SetContainingEntityInfo |
Sets the entity information of the entity object containing this collection. Call this method only from
entity classes which contain EntityCollection members, like 'Customer' which contains 'Orders' entity collection.
(Inherited from EntityCollectionBase2<TEntity>.) | |
SilentRemove |
Removes the passed in entity from the collection without notifying the entity to remove that it has been removed from this collection.
(Inherited from CollectionCore<T>.) | |
Sort(Int32, ListSortDirection) |
Applies sorting like IBindingList.ApplySort, on the field with the index fieldIndex and with the direction specified.
(Inherited from CollectionCore<T>.) | |
Sort(PropertyDescriptor, ListSortDirection, IComparer<Object>) |
Sorts the collection.
(Inherited from CollectionCore<T>.) | |
Sort(String, ListSortDirection, IComparer<Object>) |
Sorts the collection.
(Inherited from CollectionCore<T>.) | |
Sort(Int32, ListSortDirection, IComparer<Object>) |
Sorts the collection.
(Inherited from EntityCollectionBase2<TEntity>.) | |
ToString | (Inherited from CollectionCore<T>.) | |
WriteXml(String) |
Converts this entity collection to XML, recursively. Uses "EntityCollection" for the rootnode name
(Inherited from EntityCollectionBase2<TEntity>.) | |
WriteXml(XmlWriter) |
Constructs the XML output from the object graph which has this object as the root.
(Inherited from EntityCollectionBase2<TEntity>.) | |
WriteXml(String, String) |
Converts this entity collection to XML.
(Inherited from EntityCollectionBase2<TEntity>.) | |
WriteXml(XmlDocument, XmlNode) |
Converts this entity collection to XML. Uses "EntityCollection" for the rootnode name
(Inherited from EntityCollectionBase2<TEntity>.) | |
WriteXml(XmlWriter, XmlFormatAspect) |
Converts this entity collection to XML
(Inherited from EntityCollectionBase2<TEntity>.) | |
WriteXml(XmlFormatAspect, String) |
Converts this entity collection to XML, recursively. Uses "EntityCollection" for the rootnode name
(Inherited from EntityCollectionBase2<TEntity>.) | |
WriteXml(String, XmlDocument, XmlNode) |
Converts this entity collection to XML.
(Inherited from EntityCollectionBase2<TEntity>.) | |
WriteXml(XmlWriter, XmlFormatAspect, String) |
Converts this entity collection to XML
(Inherited from EntityCollectionBase2<TEntity>.) | |
WriteXml(XmlFormatAspect, String, String) |
Converts this entity collection to XML.
(Inherited from EntityCollectionBase2<TEntity>.) | |
WriteXml(XmlFormatAspect, XmlDocument, XmlNode) |
Converts this entity collection to XML. Uses "EntityCollection" for the rootnode name
(Inherited from EntityCollectionBase2<TEntity>.) | |
WriteXml(XmlFormatAspect, String, XmlDocument, XmlNode) |
Converts this entity collection to XML.
(Inherited from EntityCollectionBase2<TEntity>.) |
Name | Description | |
---|---|---|
Disposed |
IComponent's Disposed event.
(Inherited from CollectionCore<T>.) | |
EntityAdded |
Event which is raised at the End of the Add or Insert(index) routine.
(Inherited from CollectionCore<T>.) | |
EntityAdding |
Event which is raised at the start of the Add or Insert(index) routine. To cancel the addition action, set cancel to true.
(Inherited from CollectionCore<T>.) | |
EntityRemoved |
Event which is raised at the End of the Remove or RemoveAt(index) routine.
(Inherited from CollectionCore<T>.) | |
EntityRemoving |
Event which is raised at the start of the Remove or RemoveAt(index) routine. To cancel the remove action, set cancel to true.
(Inherited from CollectionCore<T>.) | |
ListChanged |
Event which is used in complex databinding.
(Inherited from CollectionCore<T>.) |
Name | Description | |
---|---|---|
IList.Add |
Adds an item to the IList.
(Inherited from CollectionCore<T>.) | |
IList.Clear |
Removes all items from the ICollection<T>.
(Inherited from CollectionCore<T>.) | |
IList.Contains |
Determines whether the IList contains a specific value.
(Inherited from CollectionCore<T>.) | |
ICollection.CopyTo | (Inherited from CollectionCore<T>.) | |
ICollection.Count |
Gets the number of elements contained in the ICollection<T>.
(Inherited from CollectionCore<T>.) | |
IEnumerable.GetEnumerator |
Returns an enumerator that iterates through a collection.
(Inherited from CollectionCore<T>.) | |
IList.IndexOf |
Determines the index of a specific item in the IList.
(Inherited from CollectionCore<T>.) | |
IList.Insert |
Inserts an item to the IList at the specified index.
(Inherited from CollectionCore<T>.) | |
IList.IsFixedSize |
Gets a value indicating whether the IList has a fixed size.
(Inherited from CollectionCore<T>.) | |
IList.IsReadOnly |
Gets a value indicating whether the ICollection<T> is read-only.
(Inherited from CollectionCore<T>.) | |
ICollection.IsSynchronized |
Gets a value indicating whether access to the ICollection is synchronized (thread safe).
(Inherited from CollectionCore<T>.) | |
IList.Item |
Gets or sets the Object at the specified index.
(Inherited from CollectionCore<T>.) | |
IXmlSerializable.ReadXml |
Constructs an object graph with this object as the root from the xml contained by the passed in XmlReader object.
(Inherited from EntityCollectionBase2<TEntity>.) | |
IList.Remove |
Removes the first occurrence of a specific object from the IList.
(Inherited from CollectionCore<T>.) | |
IList.RemoveAt |
Removes the IList<T> item at the specified index.
(Inherited from CollectionCore<T>.) | |
ICollection.SyncRoot |
Gets an object that can be used to synchronize access to the ICollection.
(Inherited from CollectionCore<T>.) | |
IEntityCollection2.Add |
Adds an IEntity2 object to the list.
(Inherited from EntityCollectionBase2<TEntity>.) | |
IEntityCollection2.AddRange |
Adds the range of objects passed in. Objects have to be IEntity2 implementing objects
(Inherited from EntityCollectionBase2<TEntity>.) | |
IEntityCollection2.Capacity |
Gets / sets the initial capacity of the entity collection.
(Inherited from EntityCollectionBase2<TEntity>.) | |
IEntityCollection2.Contains |
Returns true if the list contains the given IEntity2 Object
(Inherited from EntityCollectionBase2<TEntity>.) | |
IEntityCollection2.CopyTo |
copy the complete list of IEntity2 objects to an array of IEntity objects.
(Inherited from EntityCollectionBase2<TEntity>.) | |
IEntityCollection2.CreateHierarchicalProjection(List<IViewProjectionData>, Dictionary<Type, IEntityCollection2>) |
Creates a hierarchical projection of all the data in this collection and for each type in the complete graph found starting with each entity in this collection,
using the collectionProjections data passed in. Per entity type found, an entry is stored inside the destination dictionary.
(Inherited from EntityCollectionBase2<TEntity>.) | |
IEntityCollection2.CreateHierarchicalProjection(List<IViewProjectionData>, DataSet) |
Creates a hierarchical projection of all the data in this collection and for each type in the complete graph found starting with each entity in this collection,
using the collectionProjections data passed in. Per entity type found, a new datatable is created inside destination.
(Inherited from EntityCollectionBase2<TEntity>.) | |
IEntityCollection2.CreateView() |
Creates a new EntityView2 object of the right type on this collection with no filter nor sorter applied.
(Inherited from EntityCollectionBase2<TEntity>.) | |
IEntityCollection2.CreateView(IPredicate) |
Creates a new EntityView2 object of the right type on this collection with the passed in filter applied
(Inherited from EntityCollectionBase2<TEntity>.) | |
IEntityCollection2.CreateView(IPredicate, ISortExpression) |
Creates a new EntityView2 object of the right type on this collection with the passed in filter and sorter applied to it.
(Inherited from EntityCollectionBase2<TEntity>.) | |
IEntityCollection2.CreateView(IPredicate, ISortExpression, PostCollectionChangeAction) |
Creates a new EntityView2 object of the right type on this collection with the passed in filter and sorter applied to it and the
dataChangeAction set to the passed in value.
(Inherited from EntityCollectionBase2<TEntity>.) | |
IEntityCollection2.DefaultView |
Gets the default view for this entitycollection. The returned value is a new instance every time this property is read. It's a new entity view without a
filter or a sorter.
(Inherited from EntityCollectionBase2<TEntity>.) | |
IEntityCollection2.DirtyEntities |
Returns a readonly collection of entities which are flagged as dirty.
This collection is determined on the fly, you can use this collection to remove dirty entities from this entity collection.
(Inherited from EntityCollectionBase2<TEntity>.) | |
IEntityCollection2.IndexOf |
Returns index in the list of given IEntity2 object.
(Inherited from EntityCollectionBase2<TEntity>.) | |
IEntityCollection2.Insert |
Inserts an IEntity2 on position Index
(Inherited from EntityCollectionBase2<TEntity>.) | |
IEntityCollection2.Item |
Gets or sets the IEntity2 at the specified index.
(Inherited from EntityCollectionBase2<TEntity>.) | |
IEntityCollection2.Remove |
Remove given IEntity2 instance from the list.
(Inherited from EntityCollectionBase2<TEntity>.) | |
IEntityCollectionCore.Add |
Adds an IEntityCore object to the list.
(Inherited from CollectionCore<T>.) | |
IEntityCollectionCore.Clear() |
Clears the collection
(Inherited from CollectionCore<T>.) | |
IEntityCollectionCore.Clear(Boolean) |
Clears the collection
(Inherited from CollectionCore<T>.) | |
IEntityCollectionCore.ContainingEntityMappedField |
Gets the name of the field mapped onto the relation in the opposite entity which is represented by this collection, if this collection is
contained by an entity. E.g. it will return "Customer" if the relation Customer - Order has the field 'Customer' mapped onto it in Order and
this collection is the Orders collection in Customer. If this collection isn't contained in any entity, an empty string is returned.
(Inherited from CollectionCore<T>.) | |
IEntityCollectionCore.Contains |
Returns true if the list contains the given entity
(Inherited from CollectionCore<T>.) | |
IEntityCollectionCore.EntityFactoryToUse |
The EntityFactory to use when creating entity objects during fetch action or other logic which requires the creation of new entities.
(Inherited from CollectionCore<T>.) | |
IEntityCollectionCore.FindMatches |
Gets all indices of all the entities in the current order of this collection which match the passed in filter.
(Inherited from CollectionCore<T>.) | |
IEntityCollectionCore.IndexOf |
Returns index in the list of given entity.
(Inherited from CollectionCore<T>.) | |
IEntityCollectionCore.Insert |
Inserts an IEntityCore on position Index
(Inherited from CollectionCore<T>.) | |
IEntityCollectionCore.IsForMN |
Gets or sets a value indicating whether this instance is for a M:N relationship. If set to true, it will also set IsReadOnly to true.
(Inherited from CollectionCore<T>.) | |
IEntityCollectionCore.IsRemovalTracker |
Gets or sets a value indicating whether this instance is a removal tracker collection.
(Inherited from CollectionCore<T>.) | |
IEntityCollectionCore.Item |
Simple indexer.
(Inherited from CollectionCore<T>.) | |
IEntityCollectionCore.Remove |
Remove given IEntityCore instance from the list.
(Inherited from CollectionCore<T>.) | |
IEntityCollectionCore.RemovedEntitiesTracker |
Gets or sets the removal tracker for this entity collection
(Inherited from CollectionCore<T>.) | |
IOwnedDataSerializable.DeserializeOwnedData |
Lets the implementing class retrieve internal data directly from a SerializationReader.
(Inherited from EntityCollectionBase2<TEntity>.) | |
IOwnedDataSerializable.SerializeOwnedData |
Lets the implementing class store internal data directly into a SerializationWriter.
(Inherited from EntityCollectionBase2<TEntity>.) |