0
BobIngham created
aspnet-core angular, 5.1.0 In my host have a root organization unit for templates. During tenant registration these templates are displayed as a drop down list. The tenant selects a template option and the required entities for the template should be loaded for the tenant. I load the relevant entities from the host. So far so good. I then try save these entities for the registration tenant but the system throws an error. The repository seems to have no .AsNoTracking() option My question is: How do I clone an identity list with the Zero repository?
1 Answer(s)
-
0
The repository seems to have no .AsNoTracking() option
.AsNoTracking() is performed on an IQueryable:
var query = _repository.GetAll().AsNoTracking();