<!-- mobian-agent-page publisher="dailydev" canonical="https://daily.dev/posts/an-attempt-to-make-core-data-feel-more-like-modern-swift-yxracznsf" -->

---
title: An Attempt to Make Core Data Feel More Like Modern Swift
description: Core Data Evolution (CDE) is an experimental Swift library that modernizes Core Data development without replacing it. It introduces SwiftData-style...
canonical: https://daily.dev/posts/an-attempt-to-make-core-data-feel-more-like-modern-swift-yxracznsf
twitter:card: summary_large_image
twitter:site: @dailydotdev
og:type: website
og:site_name: daily.dev
og:title: An Attempt to Make Core Data Feel More Like Modern Swift | daily.dev
og:description: Core Data Evolution (CDE) is an experimental Swift library that modernizes Core Data development without replacing it. It introduces SwiftData-style...
og:url: https://daily.dev/posts/an-attempt-to-make-core-data-feel-more-like-modern-swift-yxracznsf
og:image: https://api.daily.dev/og/posts/yXracZNSF.png
og:image:alt: An Attempt to Make Core Data Feel More Like Modern Swift
og:image:width: 1200
og:image:height: 630
og:locale: en
---

> ## Documentation Index
> Fetch the complete documentation index at: https://daily.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# An Attempt to Make Core Data Feel More Like Modern Swift

**[Fatbobman](https://daily.dev/sources/fatbobman)** · [@fatbobman](https://daily.dev/fatbobman) · 16 min read · 0 upvotes · 0 comments

## Summary

Core Data Evolution (CDE) is an experimental Swift library that modernizes Core Data development without replacing it. It introduces SwiftData-style macro-based model declarations via @PersistentModel, type-safe predicate building with TypedPath (supporting persistent name aliasing), actor-based concurrency isolation via @NSModelActor, and improved testing utilities including runtime schema generation and per-test SQLite stores. CDE keeps .xcdatamodeld as the production model source while adding a modern Swift expression layer on top. A companion CLI tool (cde-tool) handles code generation, validation, and alignment between model files and source declarations. The project also integrates with PersistentHistoryTrackingKit and iCloudSyncStatusKit for a complete modern Core Data stack.

## Full article

daily.dev links to this article rather than hosting it. Read it at the original source: <https://fatbobman.com/en/posts/cde-an-attempt-to-make-core-data-feel-more-like-modern-swift/>

## Similar posts on daily.dev

- [Why I'm Still Thinking About Core Data in 2026](https://daily.dev/posts/why-i-m-still-thinking-about-core-data-in-2026-consf0rlr) · Fatbobman · 1 upvotes · 0 comments
- [From Property-Level Reactivity to a Freer Mental Model](https://daily.dev/posts/from-property-level-reactivity-to-a-freer-mental-model-4zl1mw6kr) · Fatbobman · 0 upvotes · 0 comments
- [SQLiteData 1.0: An alternative to SwiftData with CloudKit sync and sharing](https://daily.dev/posts/sqlitedata-1-0-an-alternative-to-swiftdata-with-cloudkit-sync-and-sharing-0qm5wyzo4) · Point-Free Pointers · 1 upvotes · 0 comments

---

Tags: [#swift](https://daily.dev/tags/swift)

[View this post on daily.dev](https://daily.dev/posts/an-attempt-to-make-core-data-feel-more-like-modern-swift-yxracznsf)

```json
{"@context":"https://schema.org","@graph":[{"@type":"Organization","@id":"https://daily.dev/#organization","name":"daily.dev","url":"https://daily.dev","logo":{"@type":"ImageObject","url":"https://daily.dev/apple-touch-icon.png","width":180,"height":180},"sameAs":["https://twitter.com/dailydotdev","https://github.com/dailydotdev","https://www.linkedin.com/company/daily-dev-ltd"]},{"@type":"WebSite","@id":"https://daily.dev/#website","url":"https://daily.dev","name":"daily.dev","publisher":{"@id":"https://daily.dev/#organization"},"potentialAction":{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https://daily.dev/search?q={search_term_string}"},"query-input":"required name=search_term_string"}}]}
{"@context":"https://schema.org","@type":"TechArticle","headline":"An Attempt to Make Core Data Feel More Like Modern Swift","url":"https://daily.dev/posts/an-attempt-to-make-core-data-feel-more-like-modern-swift-yxracznsf","mainEntityOfPage":{"@type":"WebPage","@id":"https://daily.dev/posts/an-attempt-to-make-core-data-feel-more-like-modern-swift-yxracznsf"},"datePublished":"2026-03-18T11:05:56.037Z","dateModified":"2026-03-19T08:00:17.151Z","description":"Core Data Evolution (CDE) is an experimental Swift library that modernizes Core Data development without replacing it. It introduces SwiftData-style...","image":"https://media.daily.dev/image/upload/f_auto,q_auto/v1/posts/c942b8de866d95089b5278c334da05a9?_a=AQAEuop","thumbnailUrl":"https://media.daily.dev/image/upload/f_auto,q_auto/v1/posts/c942b8de866d95089b5278c334da05a9?_a=AQAEuop","isAccessibleForFree":true,"articleSection":"Fatbobman","inLanguage":"en","publisher":{"@type":"Organization","name":"daily.dev","url":"https://daily.dev","logo":{"@type":"ImageObject","url":"https://daily.dev/apple-touch-icon.png","width":180,"height":180}},"author":{"@type":"Person","name":"Yang Xu","url":"https://daily.dev/fatbobman","image":"https://lh3.googleusercontent.com/a/AGNmyxYJD8FDo35yPZMvl1IE9sT7UrM002H-UQb82wk-6A=s96-c","interactionStatistic":{"@type":"InteractionCounter","interactionType":{"@type":"EndorseAction"},"userInteractionCount":60}},"commentCount":0,"discussionUrl":"https://daily.dev/posts/an-attempt-to-make-core-data-feel-more-like-modern-swift-yxracznsf","interactionStatistic":[{"@type":"InteractionCounter","interactionType":{"@type":"LikeAction"},"userInteractionCount":0},{"@type":"InteractionCounter","interactionType":{"@type":"CommentAction"},"userInteractionCount":0}],"keywords":"swift","timeRequired":"PT16M"}
{"@context":"https://schema.org","@type":"BreadcrumbList","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https://daily.dev"},{"@type":"ListItem","position":2,"name":"Fatbobman","item":"https://daily.dev/sources/fatbobman"},{"@type":"ListItem","position":3,"name":"An Attempt to Make Core Data Feel More Like Modern Swift"}]}
```

