0%

今天突發奇想新的DB架構來改

MongoDb One-to-One Relationship 之後呢
在右One做反序列化
因為怕左One超過16MB上限
所以要用Relation分出去
又希望查詢快速所以在右One做反序列化


ASP NET DesignPattern WebAPI, Services, Repositories

一個網站有範例有解釋
教你一步一步實作此Design Pattern
Design Patterns: Asp.Net Core Web API, services, and repositories

AspNetCore 2.1.2 安全性更新

Github : Core

記得更新


EFCore-MongoDB 原來無法處理關聯性的TABLE

我發現我無法直接增加關聯性的表格進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.

好的
只能用較複雜的邏輯去包了
嗚嗚

那篇ISSUE

那要怎麼做呢
找到了這篇

MongoDB設計指南

應該會使用 One-to-Many 多量級關聯模式 (Child-Referencing)

試試看吧!


EF Code First 的 DatabaseGenerated

自動給KEY值或不要自動給KEY值的東西

Miles MS.HelloWorld : [Entity Framework][Code First]DatabaseGenerated

接昨日(Provider 與 IdentityUser 衝突 PrimaryKey 衝突)

台北市沒放颱風假呢

只好使用另一招了

SQL分離法

把Identity那邊的放在支援的MSSQL上

把GameData部分放在MongoDb上

Try Try 看吧

今天還要加入LOG TABLE呢


在同一個Project內使用兩個Context

CODE PROJECT : Entity Framework Core with multiple DB Contexts, Schemas and Projects

另一個Context改用MongoDb就行囉


EF Code 2.0 Owend Entity Types

MS Docs : Owned Entity Types

意思就是說呢
使用 FluentAPI >> OwnsOne 在 OnModalCreating 的時候
會直接將一個CLASS包進去指定的CLASS內
而不用ForeignKey去做連結
真方便


AspNetCore Console App Build a WebHost

記得在 .csproj 內 加入

1
2
3
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.App" />
</ItemGroup>

搭配使用
MS Docs : ASP.NET Core Web Host


C# 繼承的時候中間有THIS是怎麼回事

簡單來說就是為了簡化Constructor啦
StackOverflow : base() and this() constructors best practices


EF Code 命令列指令在這兒

MS Docs : EF Core .NET Command-line Tools

今天用到
dotnet ef migrations -r –context
dotnet ef database drop

接昨日 (在 EF Core 上使用 MongoDB)

EntityFrameworkCore.MongoDb

範例CODE跑起來OK

套到自己的CODE上出現錯誤

1
2
3
4
5
6
7
8
System.InvalidOperationException: 
'A key cannot be configured on 'PocketHiAccount'
because it is a derived type.
The key must be configured on the root type 'IdentityUser<Guid>'.
If you did not intend for 'IdentityUser<Guid>' to be included in the model,
ensure that it is not included in a DbSet property on your context,
referenced in a configuration call to ModelBuilder,
or referenced from a navigation property on a type that is included in the model.'

金拍垮

問題原因猜測:
EFCode-MongoDB Provider & IdentityDbContext 在PrimaryKey部分會衝突

在範例Code內是使用 MongoDB 的 ObjectId
與IdentityUser<Tkey> 衝突到
且範例Code是使用DbContext
可能跟這個有關係

所以試著在範例CODE的 DbContext 改成 IdentityDbContext

1
public class ZooDbContext : IdentityDbContext<IdentiryUser, IdentityRole, ObjectId>

還是錯 ㄏㄏ

1
2
System.InvalidOperationException: 
A key cannot be configured on 'PocketHiAccount' because it is a derived type. The key must be configured on the root type 'IdentityUser<ObjectId>'. If you did not intend for 'IdentityUser<ObjectId>' to be included in the model, ensure that it is not included in a DbSet property on your context, referenced in a configuration call to ModelBuilder, or referenced from a navigation property on a type that is included in the model.

Q_Q

颱風來啦 四點下班

大家8888888888888888888888888888

[接續昨天] NET Core 發布時輕量化 剩下一個.exe檔好棒棒

Github : CoreRT

Github : CoreRT Pre-Requisites

  1. 安裝Visual Studio 2017 包含Visual C++
  2. 安裝CMake(安裝程式中記得把PATH給設定上去)

Github : CoreRT照著步驟做

  1. Clone CoreRT的專案原始碼
  2. Build它
    build[.cmd|.sh] clean [Debug|Release]
    • 應該會跑一段時間
    • 會Restore所有的Nuget Project
    • 最重要的ILCompiler放在\bin<OS>..\tools.
    • 自動build & test (我test總會有三個沒過)
  3. 別忘記安裝 .NET Core SDK
  4. 開啟你CMD,ㄜ不是,是x64 Native Tools Command Prompt for VS 2017
  5. 真的要開啟 x64 Native Tools Command Prompt for VS 2017 不是CMDㄛ
  6. 開啟 x64 Native Tools Command Prompt for VS 2017
  7. 編輯你的.csproj檔案 加入以下這些
    1
    2
    3
    4
    <project>  
    <Import Project="$(MSBuildSDKsPath)\Microsoft.NET.Sdk\Sdk\Sdk.targets" Condition=" '$(Configuration)' != 'Debug'" />
    <Import Project="$(IlcPath)\build\Microsoft.NETCore.Native.targets" Condition=" '$(Configuration)' != 'Debug'" />
    </project>
  8. 切到你的專案下 輸入這個
    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
  9. 江江,在 bin\x64\Release\netcoreapp2.1\win-x64\publish\ 寶藏都在那了

CMD 叫出有的沒的

現在目錄的路徑
echo %CD%

叫出所有PATH
echo %path% | path

叫出的PATH條列式的排整齊
echo %path:;=&echo.%

叫出SET
SET

Windows 資料夾第二種排序方式

比如說:我最主要是要依照時間倒序排,但又希望資料夾位於上方。

Microsoft Community

Ans: 時間排序依原本方式,第二種排序方式使用Shift選擇

NET Core 發布時用self-contained 輕量化

self-contained的發布方式,
在目前會產生落落長的檔案,
找到一個Tool可以輕量化。

Github : CoreRT

Github : CoreRT by answer