C# 클래스 Serenity.Data.Mapping.InnerJoinAttribute

상속: System.Attribute
파일 보기 프로젝트 열기: volkanceylan/Serenity

공개 메소드들

메소드 설명
InnerJoinAttribute ( string alias ) : System

Adds a inner join on foreign key. Use this version only on properties with ForeignKey attribute.

InnerJoinAttribute ( string alias, string toTable, string onCriteria ) : System

Adds a inner join

메소드 상세

InnerJoinAttribute() 공개 메소드

Adds a inner join on foreign key. Use this version only on properties with ForeignKey attribute.
public InnerJoinAttribute ( string alias ) : System
alias string Foreign join alias
리턴 System

InnerJoinAttribute() 공개 메소드

Adds a inner join
public InnerJoinAttribute ( string alias, string toTable, string onCriteria ) : System
alias string Join alias
toTable string Join table
onCriteria string If the attribute is used on a property, this parameter is a field name, if used on a class, /// this parameter is the ON criteria of the inner join statement.
리턴 System