コード例 #1
0
ファイル: KeOperation.cs プロジェクト: madansr7/EdmUtils
 public KeOperation(KeSchema schema, string name, bool isBound, KePathExpression entitySetPathExpression)
     : base(name)
 {
     DeclaringSchema = schema;
     IsBound         = isBound;
     EntitySetPath   = entitySetPathExpression;
 }
コード例 #2
0
ファイル: KeAction.cs プロジェクト: madansr7/EdmUtils
 public KeAction(KeSchema schema, string name, bool isBound, KePathExpression entitySetPathExpression)
     : base(schema, name, isBound, entitySetPathExpression)
 {
 }
コード例 #3
0
ファイル: KeFunction.cs プロジェクト: madansr7/EdmUtils
 public KeFunction(KeSchema schema, string name, bool isBound, KePathExpression entitySetPathExpression, bool isComposable)
     : base(schema, name, isBound, entitySetPathExpression)
 {
     IsComposable = isComposable;
 }