mirror of
https://github.com/nsnail/FreeSql.git
synced 2025-06-18 20:08:15 +08:00
adjust internal API
This commit is contained in:
@ -77,7 +77,7 @@ namespace FreeSql.MsAccess
|
||||
public override string Now => "now()";
|
||||
public override string NowUtc => "now()";
|
||||
|
||||
public override string QuoteWriteParamter(Type type, string paramterName) => paramterName;
|
||||
public override string QuoteWriteParamterAdapter(Type type, string paramterName) => paramterName;
|
||||
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})";
|
||||
|
Reference in New Issue
Block a user