- 增加 Column 特性 RereadSql 重读功能;

This commit is contained in:
2881099
2020-12-21 20:31:16 +08:00
parent 1effade3b1
commit 76e8b3efce
61 changed files with 143 additions and 118 deletions

View File

@ -78,7 +78,7 @@ namespace FreeSql.MsAccess
public override string NowUtc => "now()";
public override string QuoteWriteParamter(Type type, string paramterName) => paramterName;
public override string QuoteReadColumn(Type type, Type mapType, string columnName) => columnName;
protected override string QuoteReadColumnAdapter(Type type, Type mapType, string columnName) => columnName;
public override string FieldAsAlias(string alias) => $" as {alias}";
public override string IIF(string test, string ifTrue, string ifElse) => $"iif({test}, {ifTrue}, {ifElse})";