ICruddableBatch<T> Interface |
[This is preliminary documentation and is subject to change.]
Namespace: Netadmin.Management.Common.Core
public interface ICruddableBatch<T> : ICreateableBatch<T>, IManager<T>, IDetailsableBatch<T>, IUpdateableBatch<T>, IDeletableBatch<T>
The ICruddableBatch< T> type exposes the following members.
Returns | Name | Description | |
---|---|---|---|
![]() | IEnumerable<T> | Create(IEnumerable<T>) |
Creates multiple entities in one operation
(Inherited from ICreateableBatch<T>.) |
![]() | void | Delete(IEnumerable<Int64>) |
Deletes multiple entities in one operation
(Inherited from IDeletableBatch<T>.) |
![]() | IReadOnlyDictionary<TKey, TValue>, T: Int64 | DetailsAny(IEnumerable<Int64>) |
Attempts to get details on multiple ids. If an id is not found, it will not be included in the returned dictionary
(Inherited from IDetailsableBatch<T>.) |
![]() | void | Update(IEnumerable<T>) |
Updates multiple entities in one operation
(Inherited from IUpdateableBatch<T>.) |
Returns | Name | Description | |
---|---|---|---|
![]() | ICruddableBatch<T> | Create<T>(T) | (Defined by CreateableBatchExtensions.) |
![]() | void | Delete<T>(Int64) | (Defined by DeletableBatchExtensions.) |
![]() | ICruddableBatch<T> | DetailsAll<T>(Int64) | Overloaded. (Defined by DetailsableBatchExtensions.) |
![]() | IReadOnlyDictionary<TKey, TValue>, T: Int64 | DetailsAll<T>(IEnumerable<Int64>) | Overloaded. (Defined by DetailsableBatchExtensions.) |
![]() | ICruddableBatch<T> | DetailsAny<T>(Int64) | IDetailsableBatch< T>
Returns details of entity with id 'id', or null if not found
Thrown if any id zero or less. (Defined by DetailsableBatchExtensions.) |
![]() | void | Update<T>(T) | (Defined by UpdateableBatchExtensions.) |