コード例 #1
0
ファイル: SourceCodeGenerator.cs プロジェクト: vikyding/Vipr
        private void Write(FetcherNavigationProperty property)
        {
            WriteDeclaration(property);

            using (_builder.IndentBraced)
            {
                _("get");

                using (_builder.IndentBraced)
                {
                    _("if (this.{0} == null)", property.FieldName);
                    using (_builder.IndentBraced)
                    {
                        _("this.{0} = new {1}();", property.FieldName, property.InstanceType);
                        _("this.{0}.Initialize(this.Context, GetPath(\"{1}\"));", property.FieldName, property.ModelName);
                    }
                    _("");
                    _("return this.{0};", property.FieldName);
                }
            }
        }
コード例 #2
0
 public static FetcherNavigationProperty AsIFetcherNavigationPropertyForFetcher(OdcmProperty odcmProperty)
 {
     return(odcmProperty.IsCollection
         ? FetcherNavigationCollectionProperty.ForFetcher(odcmProperty)
         : FetcherNavigationProperty.ForFetcher(odcmProperty));
 }