コード例 #1
0
ファイル: CSDLUtility.cs プロジェクト: larsenjo/odata.net
 public EDMProperty(string PropertyName, Type PropertyType, CustomPropertyAnnotation customAnnotation)
     : this(PropertyName, PropertyType)
 {
     this.CustomAnnotation = customAnnotation;
 }
コード例 #2
0
ファイル: CSDLUtility.cs プロジェクト: zdzislaw/odata.net
 public EDMProperty(string PropertyName, Type PropertyType, CustomPropertyAnnotation customAnnotation)
     : this(PropertyName, PropertyType)
 {
     this.CustomAnnotation = customAnnotation;
 }
コード例 #3
0
ファイル: CSDLUtility.cs プロジェクト: larsenjo/odata.net
 public EDMProperty(string PropertyName, Type PropertyType, bool IsKeyProperty, bool IsNullableProperty, CustomPropertyAnnotation customAnnotation)
     : this(PropertyName, PropertyType, IsKeyProperty, IsNullableProperty)
 {
     this.CustomAnnotation = customAnnotation;
 }
コード例 #4
0
ファイル: CSDLUtility.cs プロジェクト: zdzislaw/odata.net
 public EDMProperty(string PropertyName, Type PropertyType, bool IsKeyProperty, bool IsNullableProperty, CustomPropertyAnnotation customAnnotation)
     : this(PropertyName, PropertyType, IsKeyProperty, IsNullableProperty)
 {
     this.CustomAnnotation = customAnnotation;
 }