ObjectId VS BsonObjectId VS BsonRepresentation
這個解答解釋得很棒
Azure Cosmos DB MongoDb 從零開始
Microsoft Docs : Azure Cosmos DB: Getting started with the SQL API and .NET Core
這個解答解釋得很棒
Microsoft Docs : Azure Cosmos DB: Getting started with the SQL API and .NET Core
MongoDb One-to-One Relationship 之後呢
在右One做反序列化
因為怕左One超過16MB上限
所以要用Relation分出去
又希望查詢快速所以在右One做反序列化
一個網站有範例有解釋
教你一步一步實作此Design Pattern
Design Patterns: Asp.Net Core Web API, services, and repositories
記得更新
我發現我無法直接增加關聯性的表格進MongoDB內,
在其中一個issue內也遭遇到了和我一樣的問題,
作者表示:
1 | EFCore-MongoDB is just a thin adapter between EFCore's Metadata system and the official MongoDB C# driver, which has no concept of relationships that aren't explicitly in the model. |
好的
只能用較複雜的邏輯去包了
嗚嗚
那要怎麼做呢
找到了這篇
應該會使用 One-to-Many 多量級關聯模式 (Child-Referencing)
試試看吧!
自動給KEY值或不要自動給KEY值的東西
Miles MS.HelloWorld : [Entity Framework][Code First]DatabaseGenerated
台北市沒放颱風假呢
只好使用另一招了
把Identity那邊的放在支援的MSSQL上
把GameData部分放在MongoDb上
Try Try 看吧
今天還要加入LOG TABLE呢
CODE PROJECT : Entity Framework Core with multiple DB Contexts, Schemas and Projects
另一個Context改用MongoDb就行囉
意思就是說呢
使用 FluentAPI >> OwnsOne 在 OnModalCreating 的時候
會直接將一個CLASS包進去指定的CLASS內
而不用ForeignKey去做連結
真方便
記得在 .csproj 內 加入
1 | <ItemGroup> |
搭配使用
MS Docs : ASP.NET Core Web Host
簡單來說就是為了簡化Constructor啦
StackOverflow : base() and this() constructors best practices
MS Docs : EF Core .NET Command-line Tools
今天用到
dotnet ef migrations -r –context
dotnet ef database drop
範例CODE跑起來OK
套到自己的CODE上出現錯誤
1 | System.InvalidOperationException: |
金拍垮
問題原因猜測:EFCode-MongoDB Provider & IdentityDbContext 在PrimaryKey部分會衝突
在範例Code內是使用 MongoDB 的 ObjectId
與IdentityUser<Tkey> 衝突到
且範例Code是使用DbContext
可能跟這個有關係
所以試著在範例CODE的 DbContext 改成 IdentityDbContext
1 | public class ZooDbContext : IdentityDbContext<IdentiryUser, IdentityRole, ObjectId> |
還是錯 ㄏㄏ
1 | System.InvalidOperationException: |
Q_Q
大家8888888888888888888888888888
EntityFramework Tutorial : One-To-ZeroOrOne
EntityFramework Tutorial : One-To-Many
Github : CoreRT Pre-Requisites
build[.cmd|.sh] clean [Debug|Release]
1 | <project> |
1 | dotnet publish --configuration Release --runtime win-x64 /p:IlcPath=<repo_root>\bin\<OS>.<arch>.<Config> |
1 | dotnet publish --configuration Release --runtime win-x64 /p:IlcPath=D:\Patrick\corert\bin\Windows_NT.x64.Debug |
StackOverflow : Notification when a file changes?
StackOverflow : FileSystemWatcher with the console application
不可在Filter內設置多個值
StackOverflow : How to set filter for FileSystemWatcher for multiple file types?
使用到的Nuget套件