fixes estimation cache id
This commit is contained in:
parent
02cce33ad6
commit
8f0abdd779
1 changed files with 1 additions and 1 deletions
|
|
@ -51,7 +51,7 @@
|
|||
Blogspot = new RemoteEntity<Blog, long>("blog", x=>x.Id);
|
||||
Contacts = new LocalEntity<ClientProviderInfo, string>(c => c.UserId);
|
||||
AppState = new LocalEntity<PageState, int>(s => s.Position);
|
||||
EstimationCache = new LocalEntity<EditEstimateViewModel, long>(e => e.Query.Id);
|
||||
EstimationCache = new LocalEntity<EditEstimateViewModel, long>(e => e.Data.Id);
|
||||
EstimateLinesTemplates = new LocalEntity<BillingLine, string>(l => l.Description);
|
||||
PrivateMessages = new LocalEntity<ChatMessage, int>(m=> m.GetHashCode());
|
||||
RemoteFiles = new RemoteFilesEntity ();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue