好比項目內已經使用了其它 orm,如 efcore,這樣意味着實體中可能存在 [Key],但它與 FreeSql [Column(IsPrimary = true] 不一樣。html
Q: FreeSql 實體特性爲啥這麼彆扭?sql
A: 爲了考慮一致性用法,所有封裝在 ColumnAttribute 下,這樣用戶使用起來,不用處處 using 或者 回憶特性應該用哪一個名字,如自增 [Column(IsIdentity = true)] 便可。數據庫
FreeSql 提供 AOP 自定義特性功能,實現與多個 orm 共同擁有一套實體特性,可避免重複定義特性。lua
如下的示例代碼,FreeSql 使用 EFCore 的實體特性。code
fsql.CodeFirst.ConfigEntity<ModelAopConfigEntity>(a => a.Property(b => b.pkid).IsPrimary(true)); fsql.Aop.ConfigEntity = (s, e) => { var attr = e.EntityType.GetCustomAttributes(typeof(System.ComponentModel.DataAnnotations.Schema.TableAttribute), false).FirstOrDefault() as System.ComponentModel.DataAnnotations.Schema.TableAttribute; if (attr != null) e.ModifyResult.Name = attr.Name; }; fsql.Aop.ConfigEntityProperty = (s, e) => { if (e.Property.GetCustomAttributes(typeof(System.ComponentModel.DataAnnotations.KeyAttribute), false).Any()) e.ModifyResult.IsPrimary = true; }; [System.ComponentModel.DataAnnotations.Schema.Table("xxx")] class ModelAopConfigEntity { [System.ComponentModel.DataAnnotations.Key] [Column(IsPrimary = false)] public int pkid { get; set; } }
就這樣,FreeSql 的實體特性就能夠和 EFCore 那樣設定了。其餘自增、樂觀鎖等,依葫蘆畫瓢即是。orm
數據庫特性 > 實體特性 > FluantApi(配置特性) > Aop(配置特性)htm