Represents link between two tables
public class Korzh.EasyQuery.Db.DbEntityLink
Type | Name | Description |
---|
String | ConditionExpr | Gets or sets the expression of link condition. This expression will be used if Korzh.EasyQuery.Db.DbEntityLink.Conditions list is empty. |
ConditionList | Conditions | Gets list of linking conditions. |
DbEntity | Entity1 | Gets or sets the first entity of the link. |
DbEntity | Entity2 | Gets or sets the second entity of the link. |
LinkType | LnkType | Gets or sets the type of the link (inner, left, right or full). |
Type | Name | Description |
---|
Condition | AddCondition(LinkCondType condType, String expr1, String expr2, String operation) | Adds the link condition by two expressions and operation. |
String | GetSqlExpr(DbQueryFormats formats) | Gets the SQL expression of the link |
String | ToString() | Returns a that represents the current . |
Type | Name | Description |
---|
LinkType | StrToLinkType(String s) | Converts text to TableLink.LinkType value. |