Posts by Alliston Carlos • 41 points
4 posts
-
2
votes1
answer19
viewsA: performFetchWithCompletionHandler not being called into production
The problem has been solved by using Push Notifications instead of Local Notifications. Parse.com itself offers a feature called Cloud Code, where you can write a task to read the feed from time to…
-
0
votes1
answer19
viewsQ: performFetchWithCompletionHandler not being called into production
I’m implementing a Swift 2 app that requests an xml feed from time to time, and triggers a local notification. For that, I’m using the method performFetchWithCompletionHandler no Appdelegate.…
-
1
votes1
answer412
viewsA: Entity with simple key referencing another with composite key
I solved the issue by mapping a private field called proprietarioID, and pointing the map to it: Map(x => x.ProprietarioID).Column("PROPRIETARIO_ID").Access.CamelCaseField(Prefix.None);` In class…
-
1
votes1
answer412
viewsQ: Entity with simple key referencing another with composite key
I am using Fluent Nhibernate for mapping my classes, and I have the following situation: User class public class UsuarioMap : ClassMap<Usuario> { public UsuarioMap() { Table("USUARIOS"); Id(x…