Skip to content

Latest commit

 

History

History
18 lines (12 loc) · 853 Bytes

ISqlExpressionTranslator.md

File metadata and controls

18 lines (12 loc) · 853 Bytes

ISqlExpressionTranslator interface

namespace: Serenity.Data   assemblySerenity.Net.Data

An interface custom ISqlDialect types can implement to change generated expressions for dynamic expression like ConcatExpressionAttribute. They should return NULL if it can't handle this expression type

public interface ISqlExpressionTranslator

Members

name description
Translate(…) Returns customized version for passed expression attribute. If the dialect don't have custom handling for the expression, it should return null.

See Also