DO NOT DOWNLOAD. DOWNLOAD LATEST STABLE FROM RELEASE TAB

Fixing boolean for YesNo data type in linq to umbraco

[TFS Changeset #55390]
This commit is contained in:
slace
2009-06-23 11:56:44 +00:00
parent b53832e80e
commit a68b657a11

View File

@@ -548,6 +548,7 @@ namespace umbraco.Linq.DTMetal.CodeBuilder
CodeMemberProperty p = new CodeMemberProperty();
p.Type = new CodeTypeReference(retyper.MemberType);
p.Name = retyper.MemberName(docTypeProperty.TypeName);
p.Attributes = MemberAttributes.Public;
p.HasGet = true;
p.HasSet = false;