IRepository(T, TKey).Update Method (IEnumerable(T))

MongoRepository

IRepositoryT, TKeyUpdate Method (IEnumerableT)
Upserts the entities.

Namespace: MongoRepository
Assembly: MongoRepository.Net45 (in MongoRepository.Net45.dll) Version: 1.6.11.0 (1.6.11.0)
Syntax
void Update(
	IEnumerable<T> entities
)
Sub Update ( 
	entities As IEnumerable(Of T)
)
void Update(
	IEnumerable<T>^ entities
)
abstract Update : 
        entities : IEnumerable<'T> -> unit 

Parameters

entities
Type: System.Collections.GenericIEnumerableT
The entities to update.
See Also