EF genery repository c# get values direct from database code example
Example 1: Core Data Quickest way to delete all instances of an entity swift
public func clearDatabase() {
guard let url = persistentContainer.persistentStoreDescriptions.first?.url else { return }
let persistentStoreCoordinator = persistentContainer.persistentStoreCoordinator
do {
try persistentStoreCoordinator.destroyPersistentStore(at:url, ofType: NSSQLiteStoreType, options: nil)
try persistentStoreCoordinator.addPersistentStore(ofType: NSSQLiteStoreType, configurationName: nil, at: url, options: nil)
} catch let error {
print("Attempted to clear persistent store: " + error.localizedDescription)
}
}
}
Example 2: print choicefield data from database in django
Try {{ pricedate.get_prices_SD_display }}
Syntax : get_FIELDNAME_display()