├── .github └── workflows │ └── dotnet.yml ├── .gitignore ├── LICENSE.md ├── README.md ├── pack.cmd └── src ├── Directory.Build.props ├── Generator ├── App.ico ├── AssemblyInfo.cs ├── AttributeAndEnumGenerator.cs ├── Generator.csproj ├── HbmWriterGenerator.cs ├── Program.cs ├── Utils.cs └── app.config ├── NHibernate.Mapping.Attributes.Generator.sln ├── NHibernate.Mapping.Attributes.Test ├── App.ico ├── Baz.CoreReference.hbm.xml ├── Baz.Reference.hbm.xml ├── DomainModel.CoreReference.hbm.xml ├── DomainModel.Reference.hbm.xml ├── DomainModel.cs ├── HbmWriterHelperFixture.cs ├── NHibernate.Mapping.Attributes.Test.csproj ├── Program.cs └── SerializationFixture.cs ├── NHibernate.Mapping.Attributes ├── AnyAttribute.cs ├── ArrayAttribute.cs ├── AssemblyInfo.cs ├── AttributeIdentifierAttribute.cs ├── BagAttribute.cs ├── BaseAttribute.cs ├── CacheAttribute.cs ├── CacheInclude.cs ├── CacheMode.cs ├── CacheUsage.cs ├── ClassAttribute.cs ├── CollectionFetchMode.cs ├── CollectionIdAttribute.cs ├── CollectionLazy.cs ├── ColumnAttribute.cs ├── CommentAttribute.cs ├── ComponentAttribute.cs ├── ComponentPropertyAttribute.cs ├── CompositeElementAttribute.cs ├── CompositeIdAttribute.cs ├── CompositeIndexAttribute.cs ├── CompositeMapKeyAttribute.cs ├── CreateAttribute.cs ├── CustomSqlCheck.cs ├── DatabaseObjectAttribute.cs ├── DefinitionAttribute.cs ├── DialectScopeAttribute.cs ├── DiscriminatorAttribute.cs ├── DropAttribute.cs ├── DynamicComponentAttribute.cs ├── ElementAttribute.cs ├── FetchMode.cs ├── FilterAttribute.cs ├── FilterDefAttribute.cs ├── FilterParamAttribute.cs ├── FlushMode.cs ├── FormulaAttribute.cs ├── GeneratorAttribute.cs ├── HbmSerializer.cs ├── HbmWriter.cs ├── HbmWriterEx.cs ├── HbmWriterHelper.cs ├── HbmWriterHelperEx.cs ├── HibernateMappingAttribute.cs ├── IdAttribute.cs ├── IdBagAttribute.cs ├── ImportAttribute.cs ├── IndexAttribute.cs ├── IndexManyToAnyAttribute.cs ├── IndexManyToManyAttribute.cs ├── JoinAttribute.cs ├── JoinFetch.cs ├── JoinedSubclassAttribute.cs ├── KeyAttribute.cs ├── KeyManyToOneAttribute.cs ├── KeyPropertyAttribute.cs ├── Laziness.cs ├── ListAttribute.cs ├── ListIndexAttribute.cs ├── LoadCollectionAttribute.cs ├── LoaderAttribute.cs ├── LockMode.cs ├── ManyToAnyAttribute.cs ├── ManyToManyAttribute.cs ├── ManyToOneAttribute.cs ├── MapAttribute.cs ├── MapKeyAttribute.cs ├── MapKeyManyToManyAttribute.cs ├── MappingException.cs ├── MetaAttribute.cs ├── MetaValueAttribute.cs ├── NHibernate.Mapping.Attributes.csproj ├── NaturalIdAttribute.cs ├── NestedCompositeElementAttribute.cs ├── NotFoundMode.cs ├── OnDelete.cs ├── OneToManyAttribute.cs ├── OneToOneAttribute.cs ├── OptimisticLockMode.cs ├── OuterJoinStrategy.cs ├── ParamAttribute.cs ├── ParentAttribute.cs ├── PolymorphismType.cs ├── PrimitiveArrayAttribute.cs ├── PrimitiveArrayFetch.cs ├── PrimitiveArrayOuterJoin.cs ├── PropertiesAttribute.cs ├── PropertyAttribute.cs ├── PropertyGeneration.cs ├── QueryAttribute.cs ├── QueryParamAttribute.cs ├── RawXmlAttribute.cs ├── RestrictedLaziness.cs ├── ResultSetAttribute.cs ├── ReturnAttribute.cs ├── ReturnColumnAttribute.cs ├── ReturnDiscriminatorAttribute.cs ├── ReturnJoinAttribute.cs ├── ReturnPropertyAttribute.cs ├── ReturnScalarAttribute.cs ├── SetAttribute.cs ├── SqlDeleteAllAttribute.cs ├── SqlDeleteAttribute.cs ├── SqlInsertAttribute.cs ├── SqlQueryAttribute.cs ├── SqlUpdateAttribute.cs ├── SubclassAttribute.cs ├── SubselectAttribute.cs ├── SynchronizeAttribute.cs ├── TimestampAttribute.cs ├── TimestampSource.cs ├── TimestampUnsavedValue.cs ├── TuplizerAttribute.cs ├── TuplizerEntityMode.cs ├── TypeAttribute.cs ├── TypeDefAttribute.cs ├── UnionSubclassAttribute.cs ├── UnsavedValueType.cs ├── VersionAttribute.cs ├── VersionGeneration.cs └── nhibernate-mapping.xsd ├── NHibernate.snk ├── Refly.snk └── Refly ├── AssemblyInfo.cs ├── CodeDom ├── AttributeArgument.cs ├── AttributeDeclaration.cs ├── ClassDeclaration.cs ├── ClassOutputType.cs ├── CodeGenerator.cs ├── CodeLanguage.cs ├── Collections │ ├── AssemblyCollection.cs │ ├── AttributeArgumentDictionary.cs │ ├── AttributeDeclarationCollection.cs │ ├── CatchClauseCollection.cs │ ├── ConstructorDeclarationCollection.cs │ ├── DelegateDeclarationCollection.cs │ ├── EventDeclarationCollection.cs │ ├── ExpressionCollection.cs │ ├── FieldDeclarationCollection.cs │ ├── IndexerDeclarationCollection.cs │ ├── MethodDeclarationCollection.cs │ ├── ParameterDeclarationCollection.cs │ ├── PropertyDeclarationCollection.cs │ ├── StatementCollection.cs │ ├── StringClassDeclarationDictionary.cs │ ├── StringConstantDeclaration.cs │ ├── StringEnumDeclarationDictionary.cs │ ├── StringFieldDeclarationDictionary.cs │ ├── StringNamespaceDeclarationDictionary.cs │ ├── StringSet.cs │ ├── ThrowedExceptionDeclarationCollection.cs │ ├── TypeCollection.cs │ ├── TypeDeclarationCollection.cs │ ├── TypeParameterDeclarationCollection.cs │ └── TypeTypeDeclarationDictionary.cs ├── ConstantDeclaration.cs ├── ConstructorDeclaration.cs ├── Declaration.cs ├── DelegateDeclaration.cs ├── Doc │ ├── Documentation.cs │ ├── TypeFinder.cs │ └── XmlMarkup.cs ├── EnumDeclaration.cs ├── EventDeclaration.cs ├── Expr.cs ├── Expressions │ ├── ArgumentReferenceExpression.cs │ ├── ArrayCreationWithInitializersExpression.cs │ ├── ArrayCreationWithSizeExpression.cs │ ├── ArrayIndexerExpression.cs │ ├── BaseReferenceExpression.cs │ ├── BinaryOpOperatorExpression.cs │ ├── CastExpression.cs │ ├── DelegateCreateExpression.cs │ ├── DelegateInvokeExpression.cs │ ├── EventReferenceExpression.cs │ ├── Expression.cs │ ├── FieldReferenceExpression.cs │ ├── IndexerExpression.cs │ ├── MethodInvokeExpression.cs │ ├── MethodReferenceExpression.cs │ ├── NativeExpression.cs │ ├── NativeMethodInvokeExpression.cs │ ├── NativeMethodReferenceExpression.cs │ ├── NativePropertyReferenceExpression.cs │ ├── ObjectCreationExpression.cs │ ├── PrimitiveExpression.cs │ ├── PropertyReferenceExpression.cs │ ├── PropertySetValueReferenceExpression.cs │ ├── SnippetExpression.cs │ ├── ThisReferenceExpression.cs │ ├── TypeReferenceExpression.cs │ └── VariableReferenceExpression.cs ├── FieldDeclaration.cs ├── ICustomAttributeProviderDeclaration.cs ├── ITypeDeclaration.cs ├── ImplementationMemberDeclaration.cs ├── IndexerDeclaration.cs ├── MemberDeclaration.cs ├── MethodDeclaration.cs ├── MethodSignature.cs ├── NamespaceDeclaration.cs ├── ParameterDeclaration.cs ├── PropertyDeclaration.cs ├── RealizedGenericTypeDeclaration.cs ├── Refly.CodeDom.Doc.xml ├── SnippetExpression.cs ├── Statements │ ├── AssignStatement.cs │ ├── AttachRemoveEventStatement.cs │ ├── CatchClauseStatement.cs │ ├── ConditionStatement.cs │ ├── ExpressionStatement.cs │ ├── ForEachStatement.cs │ ├── IterationStatement.cs │ ├── LabelStatement.cs │ ├── MethodReturnStatement.cs │ ├── NativeStatement.cs │ ├── SnippetStatement.cs │ ├── Statement.cs │ ├── ThrowExceptionStatement.cs │ ├── TryCatchFinallyStatement.cs │ └── VariableDeclarationStatement.cs ├── Stm.cs ├── StringEventArgs.cs ├── StringTypeDeclaration.cs ├── ThrowedExceptionDeclaration.cs ├── TypeParameterDeclaration.cs └── TypeTypeDeclaration.cs ├── NameConformer.cs ├── Namer.cs ├── Refly.csproj ├── Templates ├── CollectionTemplate.cs ├── DataReaderTemplate.cs ├── DataTemplate.cs ├── DictionaryTemplate.cs ├── ITemplate.cs ├── Import.cs ├── ImportCollection.cs └── Template.cs └── TypeHelper.cs /.github/workflows/dotnet.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/.github/workflows/dotnet.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/README.md -------------------------------------------------------------------------------- /pack.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/pack.cmd -------------------------------------------------------------------------------- /src/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/Directory.Build.props -------------------------------------------------------------------------------- /src/Generator/App.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/Generator/App.ico -------------------------------------------------------------------------------- /src/Generator/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/Generator/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Generator/AttributeAndEnumGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/Generator/AttributeAndEnumGenerator.cs -------------------------------------------------------------------------------- /src/Generator/Generator.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/Generator/Generator.csproj -------------------------------------------------------------------------------- /src/Generator/HbmWriterGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/Generator/HbmWriterGenerator.cs -------------------------------------------------------------------------------- /src/Generator/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/Generator/Program.cs -------------------------------------------------------------------------------- /src/Generator/Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/Generator/Utils.cs -------------------------------------------------------------------------------- /src/Generator/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/Generator/app.config -------------------------------------------------------------------------------- /src/NHibernate.Mapping.Attributes.Generator.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/NHibernate.Mapping.Attributes.Generator.sln -------------------------------------------------------------------------------- /src/NHibernate.Mapping.Attributes.Test/App.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/NHibernate.Mapping.Attributes.Test/App.ico -------------------------------------------------------------------------------- /src/NHibernate.Mapping.Attributes.Test/Baz.CoreReference.hbm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/NHibernate.Mapping.Attributes.Test/Baz.CoreReference.hbm.xml -------------------------------------------------------------------------------- /src/NHibernate.Mapping.Attributes.Test/Baz.Reference.hbm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/NHibernate.Mapping.Attributes.Test/Baz.Reference.hbm.xml -------------------------------------------------------------------------------- /src/NHibernate.Mapping.Attributes.Test/DomainModel.CoreReference.hbm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/NHibernate.Mapping.Attributes.Test/DomainModel.CoreReference.hbm.xml -------------------------------------------------------------------------------- /src/NHibernate.Mapping.Attributes.Test/DomainModel.Reference.hbm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/NHibernate.Mapping.Attributes.Test/DomainModel.Reference.hbm.xml -------------------------------------------------------------------------------- /src/NHibernate.Mapping.Attributes.Test/DomainModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/NHibernate.Mapping.Attributes.Test/DomainModel.cs -------------------------------------------------------------------------------- /src/NHibernate.Mapping.Attributes.Test/HbmWriterHelperFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/NHibernate.Mapping.Attributes.Test/HbmWriterHelperFixture.cs -------------------------------------------------------------------------------- /src/NHibernate.Mapping.Attributes.Test/NHibernate.Mapping.Attributes.Test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/NHibernate.Mapping.Attributes.Test/NHibernate.Mapping.Attributes.Test.csproj -------------------------------------------------------------------------------- /src/NHibernate.Mapping.Attributes.Test/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/NHibernate.Mapping.Attributes.Test/Program.cs -------------------------------------------------------------------------------- /src/NHibernate.Mapping.Attributes.Test/SerializationFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/NHibernate.Mapping.Attributes.Test/SerializationFixture.cs -------------------------------------------------------------------------------- /src/NHibernate.Mapping.Attributes/AnyAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/NHibernate.Mapping.Attributes/AnyAttribute.cs -------------------------------------------------------------------------------- /src/NHibernate.Mapping.Attributes/ArrayAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/NHibernate.Mapping.Attributes/ArrayAttribute.cs -------------------------------------------------------------------------------- /src/NHibernate.Mapping.Attributes/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/NHibernate.Mapping.Attributes/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/NHibernate.Mapping.Attributes/AttributeIdentifierAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/NHibernate.Mapping.Attributes/AttributeIdentifierAttribute.cs -------------------------------------------------------------------------------- /src/NHibernate.Mapping.Attributes/BagAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/NHibernate.Mapping.Attributes/BagAttribute.cs -------------------------------------------------------------------------------- /src/NHibernate.Mapping.Attributes/BaseAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/NHibernate.Mapping.Attributes/BaseAttribute.cs -------------------------------------------------------------------------------- /src/NHibernate.Mapping.Attributes/CacheAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/NHibernate.Mapping.Attributes/CacheAttribute.cs -------------------------------------------------------------------------------- /src/NHibernate.Mapping.Attributes/CacheInclude.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/NHibernate.Mapping.Attributes/CacheInclude.cs -------------------------------------------------------------------------------- /src/NHibernate.Mapping.Attributes/CacheMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/NHibernate.Mapping.Attributes/CacheMode.cs -------------------------------------------------------------------------------- /src/NHibernate.Mapping.Attributes/CacheUsage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/NHibernate.Mapping.Attributes/CacheUsage.cs -------------------------------------------------------------------------------- /src/NHibernate.Mapping.Attributes/ClassAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/NHibernate.Mapping.Attributes/ClassAttribute.cs -------------------------------------------------------------------------------- /src/NHibernate.Mapping.Attributes/CollectionFetchMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/NHibernate.Mapping.Attributes/CollectionFetchMode.cs -------------------------------------------------------------------------------- /src/NHibernate.Mapping.Attributes/CollectionIdAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/NHibernate.Mapping.Attributes/CollectionIdAttribute.cs -------------------------------------------------------------------------------- /src/NHibernate.Mapping.Attributes/CollectionLazy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/NHibernate.Mapping.Attributes/CollectionLazy.cs -------------------------------------------------------------------------------- /src/NHibernate.Mapping.Attributes/ColumnAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/NHibernate.Mapping.Attributes/ColumnAttribute.cs -------------------------------------------------------------------------------- /src/NHibernate.Mapping.Attributes/CommentAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/NHibernate.Mapping.Attributes/CommentAttribute.cs -------------------------------------------------------------------------------- /src/NHibernate.Mapping.Attributes/ComponentAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/NHibernate.Mapping.Attributes/ComponentAttribute.cs -------------------------------------------------------------------------------- /src/NHibernate.Mapping.Attributes/ComponentPropertyAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/NHibernate.Mapping.Attributes/ComponentPropertyAttribute.cs -------------------------------------------------------------------------------- /src/NHibernate.Mapping.Attributes/CompositeElementAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/NHibernate.Mapping.Attributes/CompositeElementAttribute.cs -------------------------------------------------------------------------------- /src/NHibernate.Mapping.Attributes/CompositeIdAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/NHibernate.Mapping.Attributes/CompositeIdAttribute.cs -------------------------------------------------------------------------------- /src/NHibernate.Mapping.Attributes/CompositeIndexAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/NHibernate.Mapping.Attributes/CompositeIndexAttribute.cs -------------------------------------------------------------------------------- /src/NHibernate.Mapping.Attributes/CompositeMapKeyAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/NHibernate.Mapping.Attributes/CompositeMapKeyAttribute.cs -------------------------------------------------------------------------------- /src/NHibernate.Mapping.Attributes/CreateAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/NHibernate.Mapping.Attributes/CreateAttribute.cs -------------------------------------------------------------------------------- /src/NHibernate.Mapping.Attributes/CustomSqlCheck.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/NHibernate.Mapping.Attributes/CustomSqlCheck.cs -------------------------------------------------------------------------------- /src/NHibernate.Mapping.Attributes/DatabaseObjectAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/NHibernate.Mapping.Attributes/DatabaseObjectAttribute.cs -------------------------------------------------------------------------------- /src/NHibernate.Mapping.Attributes/DefinitionAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/NHibernate.Mapping.Attributes/DefinitionAttribute.cs -------------------------------------------------------------------------------- /src/NHibernate.Mapping.Attributes/DialectScopeAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/NHibernate.Mapping.Attributes/DialectScopeAttribute.cs -------------------------------------------------------------------------------- /src/NHibernate.Mapping.Attributes/DiscriminatorAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/NHibernate.Mapping.Attributes/DiscriminatorAttribute.cs -------------------------------------------------------------------------------- /src/NHibernate.Mapping.Attributes/DropAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/NHibernate.Mapping.Attributes/DropAttribute.cs -------------------------------------------------------------------------------- /src/NHibernate.Mapping.Attributes/DynamicComponentAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/NHibernate.Mapping.Attributes/DynamicComponentAttribute.cs -------------------------------------------------------------------------------- /src/NHibernate.Mapping.Attributes/ElementAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/NHibernate.Mapping.Attributes/ElementAttribute.cs -------------------------------------------------------------------------------- /src/NHibernate.Mapping.Attributes/FetchMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/NHibernate.Mapping.Attributes/FetchMode.cs -------------------------------------------------------------------------------- /src/NHibernate.Mapping.Attributes/FilterAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/NHibernate.Mapping.Attributes/FilterAttribute.cs -------------------------------------------------------------------------------- /src/NHibernate.Mapping.Attributes/FilterDefAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/NHibernate.Mapping.Attributes/FilterDefAttribute.cs -------------------------------------------------------------------------------- /src/NHibernate.Mapping.Attributes/FilterParamAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/NHibernate.Mapping.Attributes/FilterParamAttribute.cs -------------------------------------------------------------------------------- /src/NHibernate.Mapping.Attributes/FlushMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/NHibernate.Mapping.Attributes/FlushMode.cs -------------------------------------------------------------------------------- /src/NHibernate.Mapping.Attributes/FormulaAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/NHibernate.Mapping.Attributes/FormulaAttribute.cs -------------------------------------------------------------------------------- /src/NHibernate.Mapping.Attributes/GeneratorAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/NHibernate.Mapping.Attributes/GeneratorAttribute.cs -------------------------------------------------------------------------------- /src/NHibernate.Mapping.Attributes/HbmSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/NHibernate.Mapping.Attributes/HbmSerializer.cs -------------------------------------------------------------------------------- /src/NHibernate.Mapping.Attributes/HbmWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/NHibernate.Mapping.Attributes/HbmWriter.cs -------------------------------------------------------------------------------- /src/NHibernate.Mapping.Attributes/HbmWriterEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/NHibernate.Mapping.Attributes/HbmWriterEx.cs -------------------------------------------------------------------------------- /src/NHibernate.Mapping.Attributes/HbmWriterHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/NHibernate.Mapping.Attributes/HbmWriterHelper.cs -------------------------------------------------------------------------------- /src/NHibernate.Mapping.Attributes/HbmWriterHelperEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/NHibernate.Mapping.Attributes/HbmWriterHelperEx.cs -------------------------------------------------------------------------------- /src/NHibernate.Mapping.Attributes/HibernateMappingAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/NHibernate.Mapping.Attributes/HibernateMappingAttribute.cs -------------------------------------------------------------------------------- /src/NHibernate.Mapping.Attributes/IdAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/NHibernate.Mapping.Attributes/IdAttribute.cs -------------------------------------------------------------------------------- /src/NHibernate.Mapping.Attributes/IdBagAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/NHibernate.Mapping.Attributes/IdBagAttribute.cs -------------------------------------------------------------------------------- /src/NHibernate.Mapping.Attributes/ImportAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/NHibernate.Mapping.Attributes/ImportAttribute.cs -------------------------------------------------------------------------------- /src/NHibernate.Mapping.Attributes/IndexAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/NHibernate.Mapping.Attributes/IndexAttribute.cs -------------------------------------------------------------------------------- /src/NHibernate.Mapping.Attributes/IndexManyToAnyAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/NHibernate.Mapping.Attributes/IndexManyToAnyAttribute.cs -------------------------------------------------------------------------------- /src/NHibernate.Mapping.Attributes/IndexManyToManyAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/NHibernate.Mapping.Attributes/IndexManyToManyAttribute.cs -------------------------------------------------------------------------------- /src/NHibernate.Mapping.Attributes/JoinAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/NHibernate.Mapping.Attributes/JoinAttribute.cs -------------------------------------------------------------------------------- /src/NHibernate.Mapping.Attributes/JoinFetch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/NHibernate.Mapping.Attributes/JoinFetch.cs -------------------------------------------------------------------------------- /src/NHibernate.Mapping.Attributes/JoinedSubclassAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/NHibernate.Mapping.Attributes/JoinedSubclassAttribute.cs -------------------------------------------------------------------------------- /src/NHibernate.Mapping.Attributes/KeyAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/NHibernate.Mapping.Attributes/KeyAttribute.cs -------------------------------------------------------------------------------- /src/NHibernate.Mapping.Attributes/KeyManyToOneAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/NHibernate.Mapping.Attributes/KeyManyToOneAttribute.cs -------------------------------------------------------------------------------- /src/NHibernate.Mapping.Attributes/KeyPropertyAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/NHibernate.Mapping.Attributes/KeyPropertyAttribute.cs -------------------------------------------------------------------------------- /src/NHibernate.Mapping.Attributes/Laziness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/NHibernate.Mapping.Attributes/Laziness.cs -------------------------------------------------------------------------------- /src/NHibernate.Mapping.Attributes/ListAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/NHibernate.Mapping.Attributes/ListAttribute.cs -------------------------------------------------------------------------------- /src/NHibernate.Mapping.Attributes/ListIndexAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/NHibernate.Mapping.Attributes/ListIndexAttribute.cs -------------------------------------------------------------------------------- /src/NHibernate.Mapping.Attributes/LoadCollectionAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/NHibernate.Mapping.Attributes/LoadCollectionAttribute.cs -------------------------------------------------------------------------------- /src/NHibernate.Mapping.Attributes/LoaderAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/NHibernate.Mapping.Attributes/LoaderAttribute.cs -------------------------------------------------------------------------------- /src/NHibernate.Mapping.Attributes/LockMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/NHibernate.Mapping.Attributes/LockMode.cs -------------------------------------------------------------------------------- /src/NHibernate.Mapping.Attributes/ManyToAnyAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/NHibernate.Mapping.Attributes/ManyToAnyAttribute.cs -------------------------------------------------------------------------------- /src/NHibernate.Mapping.Attributes/ManyToManyAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/NHibernate.Mapping.Attributes/ManyToManyAttribute.cs -------------------------------------------------------------------------------- /src/NHibernate.Mapping.Attributes/ManyToOneAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/NHibernate.Mapping.Attributes/ManyToOneAttribute.cs -------------------------------------------------------------------------------- /src/NHibernate.Mapping.Attributes/MapAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/NHibernate.Mapping.Attributes/MapAttribute.cs -------------------------------------------------------------------------------- /src/NHibernate.Mapping.Attributes/MapKeyAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/NHibernate.Mapping.Attributes/MapKeyAttribute.cs -------------------------------------------------------------------------------- /src/NHibernate.Mapping.Attributes/MapKeyManyToManyAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/NHibernate.Mapping.Attributes/MapKeyManyToManyAttribute.cs -------------------------------------------------------------------------------- /src/NHibernate.Mapping.Attributes/MappingException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/NHibernate.Mapping.Attributes/MappingException.cs -------------------------------------------------------------------------------- /src/NHibernate.Mapping.Attributes/MetaAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/NHibernate.Mapping.Attributes/MetaAttribute.cs -------------------------------------------------------------------------------- /src/NHibernate.Mapping.Attributes/MetaValueAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/NHibernate.Mapping.Attributes/MetaValueAttribute.cs -------------------------------------------------------------------------------- /src/NHibernate.Mapping.Attributes/NHibernate.Mapping.Attributes.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/NHibernate.Mapping.Attributes/NHibernate.Mapping.Attributes.csproj -------------------------------------------------------------------------------- /src/NHibernate.Mapping.Attributes/NaturalIdAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/NHibernate.Mapping.Attributes/NaturalIdAttribute.cs -------------------------------------------------------------------------------- /src/NHibernate.Mapping.Attributes/NestedCompositeElementAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/NHibernate.Mapping.Attributes/NestedCompositeElementAttribute.cs -------------------------------------------------------------------------------- /src/NHibernate.Mapping.Attributes/NotFoundMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/NHibernate.Mapping.Attributes/NotFoundMode.cs -------------------------------------------------------------------------------- /src/NHibernate.Mapping.Attributes/OnDelete.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/NHibernate.Mapping.Attributes/OnDelete.cs -------------------------------------------------------------------------------- /src/NHibernate.Mapping.Attributes/OneToManyAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/NHibernate.Mapping.Attributes/OneToManyAttribute.cs -------------------------------------------------------------------------------- /src/NHibernate.Mapping.Attributes/OneToOneAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/NHibernate.Mapping.Attributes/OneToOneAttribute.cs -------------------------------------------------------------------------------- /src/NHibernate.Mapping.Attributes/OptimisticLockMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/NHibernate.Mapping.Attributes/OptimisticLockMode.cs -------------------------------------------------------------------------------- /src/NHibernate.Mapping.Attributes/OuterJoinStrategy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/NHibernate.Mapping.Attributes/OuterJoinStrategy.cs -------------------------------------------------------------------------------- /src/NHibernate.Mapping.Attributes/ParamAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/NHibernate.Mapping.Attributes/ParamAttribute.cs -------------------------------------------------------------------------------- /src/NHibernate.Mapping.Attributes/ParentAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/NHibernate.Mapping.Attributes/ParentAttribute.cs -------------------------------------------------------------------------------- /src/NHibernate.Mapping.Attributes/PolymorphismType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/NHibernate.Mapping.Attributes/PolymorphismType.cs -------------------------------------------------------------------------------- /src/NHibernate.Mapping.Attributes/PrimitiveArrayAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/NHibernate.Mapping.Attributes/PrimitiveArrayAttribute.cs -------------------------------------------------------------------------------- /src/NHibernate.Mapping.Attributes/PrimitiveArrayFetch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/NHibernate.Mapping.Attributes/PrimitiveArrayFetch.cs -------------------------------------------------------------------------------- /src/NHibernate.Mapping.Attributes/PrimitiveArrayOuterJoin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/NHibernate.Mapping.Attributes/PrimitiveArrayOuterJoin.cs -------------------------------------------------------------------------------- /src/NHibernate.Mapping.Attributes/PropertiesAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/NHibernate.Mapping.Attributes/PropertiesAttribute.cs -------------------------------------------------------------------------------- /src/NHibernate.Mapping.Attributes/PropertyAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/NHibernate.Mapping.Attributes/PropertyAttribute.cs -------------------------------------------------------------------------------- /src/NHibernate.Mapping.Attributes/PropertyGeneration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/NHibernate.Mapping.Attributes/PropertyGeneration.cs -------------------------------------------------------------------------------- /src/NHibernate.Mapping.Attributes/QueryAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/NHibernate.Mapping.Attributes/QueryAttribute.cs -------------------------------------------------------------------------------- /src/NHibernate.Mapping.Attributes/QueryParamAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/NHibernate.Mapping.Attributes/QueryParamAttribute.cs -------------------------------------------------------------------------------- /src/NHibernate.Mapping.Attributes/RawXmlAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/NHibernate.Mapping.Attributes/RawXmlAttribute.cs -------------------------------------------------------------------------------- /src/NHibernate.Mapping.Attributes/RestrictedLaziness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/NHibernate.Mapping.Attributes/RestrictedLaziness.cs -------------------------------------------------------------------------------- /src/NHibernate.Mapping.Attributes/ResultSetAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/NHibernate.Mapping.Attributes/ResultSetAttribute.cs -------------------------------------------------------------------------------- /src/NHibernate.Mapping.Attributes/ReturnAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/NHibernate.Mapping.Attributes/ReturnAttribute.cs -------------------------------------------------------------------------------- /src/NHibernate.Mapping.Attributes/ReturnColumnAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/NHibernate.Mapping.Attributes/ReturnColumnAttribute.cs -------------------------------------------------------------------------------- /src/NHibernate.Mapping.Attributes/ReturnDiscriminatorAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/NHibernate.Mapping.Attributes/ReturnDiscriminatorAttribute.cs -------------------------------------------------------------------------------- /src/NHibernate.Mapping.Attributes/ReturnJoinAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/NHibernate.Mapping.Attributes/ReturnJoinAttribute.cs -------------------------------------------------------------------------------- /src/NHibernate.Mapping.Attributes/ReturnPropertyAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/NHibernate.Mapping.Attributes/ReturnPropertyAttribute.cs -------------------------------------------------------------------------------- /src/NHibernate.Mapping.Attributes/ReturnScalarAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/NHibernate.Mapping.Attributes/ReturnScalarAttribute.cs -------------------------------------------------------------------------------- /src/NHibernate.Mapping.Attributes/SetAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/NHibernate.Mapping.Attributes/SetAttribute.cs -------------------------------------------------------------------------------- /src/NHibernate.Mapping.Attributes/SqlDeleteAllAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/NHibernate.Mapping.Attributes/SqlDeleteAllAttribute.cs -------------------------------------------------------------------------------- /src/NHibernate.Mapping.Attributes/SqlDeleteAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/NHibernate.Mapping.Attributes/SqlDeleteAttribute.cs -------------------------------------------------------------------------------- /src/NHibernate.Mapping.Attributes/SqlInsertAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/NHibernate.Mapping.Attributes/SqlInsertAttribute.cs -------------------------------------------------------------------------------- /src/NHibernate.Mapping.Attributes/SqlQueryAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/NHibernate.Mapping.Attributes/SqlQueryAttribute.cs -------------------------------------------------------------------------------- /src/NHibernate.Mapping.Attributes/SqlUpdateAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/NHibernate.Mapping.Attributes/SqlUpdateAttribute.cs -------------------------------------------------------------------------------- /src/NHibernate.Mapping.Attributes/SubclassAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/NHibernate.Mapping.Attributes/SubclassAttribute.cs -------------------------------------------------------------------------------- /src/NHibernate.Mapping.Attributes/SubselectAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/NHibernate.Mapping.Attributes/SubselectAttribute.cs -------------------------------------------------------------------------------- /src/NHibernate.Mapping.Attributes/SynchronizeAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/NHibernate.Mapping.Attributes/SynchronizeAttribute.cs -------------------------------------------------------------------------------- /src/NHibernate.Mapping.Attributes/TimestampAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/NHibernate.Mapping.Attributes/TimestampAttribute.cs -------------------------------------------------------------------------------- /src/NHibernate.Mapping.Attributes/TimestampSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/NHibernate.Mapping.Attributes/TimestampSource.cs -------------------------------------------------------------------------------- /src/NHibernate.Mapping.Attributes/TimestampUnsavedValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/NHibernate.Mapping.Attributes/TimestampUnsavedValue.cs -------------------------------------------------------------------------------- /src/NHibernate.Mapping.Attributes/TuplizerAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/NHibernate.Mapping.Attributes/TuplizerAttribute.cs -------------------------------------------------------------------------------- /src/NHibernate.Mapping.Attributes/TuplizerEntityMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/NHibernate.Mapping.Attributes/TuplizerEntityMode.cs -------------------------------------------------------------------------------- /src/NHibernate.Mapping.Attributes/TypeAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/NHibernate.Mapping.Attributes/TypeAttribute.cs -------------------------------------------------------------------------------- /src/NHibernate.Mapping.Attributes/TypeDefAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/NHibernate.Mapping.Attributes/TypeDefAttribute.cs -------------------------------------------------------------------------------- /src/NHibernate.Mapping.Attributes/UnionSubclassAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/NHibernate.Mapping.Attributes/UnionSubclassAttribute.cs -------------------------------------------------------------------------------- /src/NHibernate.Mapping.Attributes/UnsavedValueType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/NHibernate.Mapping.Attributes/UnsavedValueType.cs -------------------------------------------------------------------------------- /src/NHibernate.Mapping.Attributes/VersionAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/NHibernate.Mapping.Attributes/VersionAttribute.cs -------------------------------------------------------------------------------- /src/NHibernate.Mapping.Attributes/VersionGeneration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/NHibernate.Mapping.Attributes/VersionGeneration.cs -------------------------------------------------------------------------------- /src/NHibernate.Mapping.Attributes/nhibernate-mapping.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/NHibernate.Mapping.Attributes/nhibernate-mapping.xsd -------------------------------------------------------------------------------- /src/NHibernate.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/NHibernate.snk -------------------------------------------------------------------------------- /src/Refly.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/Refly.snk -------------------------------------------------------------------------------- /src/Refly/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/Refly/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Refly/CodeDom/AttributeArgument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/Refly/CodeDom/AttributeArgument.cs -------------------------------------------------------------------------------- /src/Refly/CodeDom/AttributeDeclaration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/Refly/CodeDom/AttributeDeclaration.cs -------------------------------------------------------------------------------- /src/Refly/CodeDom/ClassDeclaration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/Refly/CodeDom/ClassDeclaration.cs -------------------------------------------------------------------------------- /src/Refly/CodeDom/ClassOutputType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/Refly/CodeDom/ClassOutputType.cs -------------------------------------------------------------------------------- /src/Refly/CodeDom/CodeGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/Refly/CodeDom/CodeGenerator.cs -------------------------------------------------------------------------------- /src/Refly/CodeDom/CodeLanguage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/Refly/CodeDom/CodeLanguage.cs -------------------------------------------------------------------------------- /src/Refly/CodeDom/Collections/AssemblyCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/Refly/CodeDom/Collections/AssemblyCollection.cs -------------------------------------------------------------------------------- /src/Refly/CodeDom/Collections/AttributeArgumentDictionary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/Refly/CodeDom/Collections/AttributeArgumentDictionary.cs -------------------------------------------------------------------------------- /src/Refly/CodeDom/Collections/AttributeDeclarationCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/Refly/CodeDom/Collections/AttributeDeclarationCollection.cs -------------------------------------------------------------------------------- /src/Refly/CodeDom/Collections/CatchClauseCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/Refly/CodeDom/Collections/CatchClauseCollection.cs -------------------------------------------------------------------------------- /src/Refly/CodeDom/Collections/ConstructorDeclarationCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/Refly/CodeDom/Collections/ConstructorDeclarationCollection.cs -------------------------------------------------------------------------------- /src/Refly/CodeDom/Collections/DelegateDeclarationCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/Refly/CodeDom/Collections/DelegateDeclarationCollection.cs -------------------------------------------------------------------------------- /src/Refly/CodeDom/Collections/EventDeclarationCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/Refly/CodeDom/Collections/EventDeclarationCollection.cs -------------------------------------------------------------------------------- /src/Refly/CodeDom/Collections/ExpressionCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/Refly/CodeDom/Collections/ExpressionCollection.cs -------------------------------------------------------------------------------- /src/Refly/CodeDom/Collections/FieldDeclarationCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/Refly/CodeDom/Collections/FieldDeclarationCollection.cs -------------------------------------------------------------------------------- /src/Refly/CodeDom/Collections/IndexerDeclarationCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/Refly/CodeDom/Collections/IndexerDeclarationCollection.cs -------------------------------------------------------------------------------- /src/Refly/CodeDom/Collections/MethodDeclarationCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/Refly/CodeDom/Collections/MethodDeclarationCollection.cs -------------------------------------------------------------------------------- /src/Refly/CodeDom/Collections/ParameterDeclarationCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/Refly/CodeDom/Collections/ParameterDeclarationCollection.cs -------------------------------------------------------------------------------- /src/Refly/CodeDom/Collections/PropertyDeclarationCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/Refly/CodeDom/Collections/PropertyDeclarationCollection.cs -------------------------------------------------------------------------------- /src/Refly/CodeDom/Collections/StatementCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/Refly/CodeDom/Collections/StatementCollection.cs -------------------------------------------------------------------------------- /src/Refly/CodeDom/Collections/StringClassDeclarationDictionary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/Refly/CodeDom/Collections/StringClassDeclarationDictionary.cs -------------------------------------------------------------------------------- /src/Refly/CodeDom/Collections/StringConstantDeclaration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/Refly/CodeDom/Collections/StringConstantDeclaration.cs -------------------------------------------------------------------------------- /src/Refly/CodeDom/Collections/StringEnumDeclarationDictionary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/Refly/CodeDom/Collections/StringEnumDeclarationDictionary.cs -------------------------------------------------------------------------------- /src/Refly/CodeDom/Collections/StringFieldDeclarationDictionary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/Refly/CodeDom/Collections/StringFieldDeclarationDictionary.cs -------------------------------------------------------------------------------- /src/Refly/CodeDom/Collections/StringNamespaceDeclarationDictionary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/Refly/CodeDom/Collections/StringNamespaceDeclarationDictionary.cs -------------------------------------------------------------------------------- /src/Refly/CodeDom/Collections/StringSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/Refly/CodeDom/Collections/StringSet.cs -------------------------------------------------------------------------------- /src/Refly/CodeDom/Collections/ThrowedExceptionDeclarationCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/Refly/CodeDom/Collections/ThrowedExceptionDeclarationCollection.cs -------------------------------------------------------------------------------- /src/Refly/CodeDom/Collections/TypeCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/Refly/CodeDom/Collections/TypeCollection.cs -------------------------------------------------------------------------------- /src/Refly/CodeDom/Collections/TypeDeclarationCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/Refly/CodeDom/Collections/TypeDeclarationCollection.cs -------------------------------------------------------------------------------- /src/Refly/CodeDom/Collections/TypeParameterDeclarationCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/Refly/CodeDom/Collections/TypeParameterDeclarationCollection.cs -------------------------------------------------------------------------------- /src/Refly/CodeDom/Collections/TypeTypeDeclarationDictionary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/Refly/CodeDom/Collections/TypeTypeDeclarationDictionary.cs -------------------------------------------------------------------------------- /src/Refly/CodeDom/ConstantDeclaration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/Refly/CodeDom/ConstantDeclaration.cs -------------------------------------------------------------------------------- /src/Refly/CodeDom/ConstructorDeclaration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/Refly/CodeDom/ConstructorDeclaration.cs -------------------------------------------------------------------------------- /src/Refly/CodeDom/Declaration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/Refly/CodeDom/Declaration.cs -------------------------------------------------------------------------------- /src/Refly/CodeDom/DelegateDeclaration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/Refly/CodeDom/DelegateDeclaration.cs -------------------------------------------------------------------------------- /src/Refly/CodeDom/Doc/Documentation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/Refly/CodeDom/Doc/Documentation.cs -------------------------------------------------------------------------------- /src/Refly/CodeDom/Doc/TypeFinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/Refly/CodeDom/Doc/TypeFinder.cs -------------------------------------------------------------------------------- /src/Refly/CodeDom/Doc/XmlMarkup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/Refly/CodeDom/Doc/XmlMarkup.cs -------------------------------------------------------------------------------- /src/Refly/CodeDom/EnumDeclaration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/Refly/CodeDom/EnumDeclaration.cs -------------------------------------------------------------------------------- /src/Refly/CodeDom/EventDeclaration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/Refly/CodeDom/EventDeclaration.cs -------------------------------------------------------------------------------- /src/Refly/CodeDom/Expr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/Refly/CodeDom/Expr.cs -------------------------------------------------------------------------------- /src/Refly/CodeDom/Expressions/ArgumentReferenceExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/Refly/CodeDom/Expressions/ArgumentReferenceExpression.cs -------------------------------------------------------------------------------- /src/Refly/CodeDom/Expressions/ArrayCreationWithInitializersExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/Refly/CodeDom/Expressions/ArrayCreationWithInitializersExpression.cs -------------------------------------------------------------------------------- /src/Refly/CodeDom/Expressions/ArrayCreationWithSizeExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/Refly/CodeDom/Expressions/ArrayCreationWithSizeExpression.cs -------------------------------------------------------------------------------- /src/Refly/CodeDom/Expressions/ArrayIndexerExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/Refly/CodeDom/Expressions/ArrayIndexerExpression.cs -------------------------------------------------------------------------------- /src/Refly/CodeDom/Expressions/BaseReferenceExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/Refly/CodeDom/Expressions/BaseReferenceExpression.cs -------------------------------------------------------------------------------- /src/Refly/CodeDom/Expressions/BinaryOpOperatorExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/Refly/CodeDom/Expressions/BinaryOpOperatorExpression.cs -------------------------------------------------------------------------------- /src/Refly/CodeDom/Expressions/CastExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/Refly/CodeDom/Expressions/CastExpression.cs -------------------------------------------------------------------------------- /src/Refly/CodeDom/Expressions/DelegateCreateExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/Refly/CodeDom/Expressions/DelegateCreateExpression.cs -------------------------------------------------------------------------------- /src/Refly/CodeDom/Expressions/DelegateInvokeExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/Refly/CodeDom/Expressions/DelegateInvokeExpression.cs -------------------------------------------------------------------------------- /src/Refly/CodeDom/Expressions/EventReferenceExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/Refly/CodeDom/Expressions/EventReferenceExpression.cs -------------------------------------------------------------------------------- /src/Refly/CodeDom/Expressions/Expression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/Refly/CodeDom/Expressions/Expression.cs -------------------------------------------------------------------------------- /src/Refly/CodeDom/Expressions/FieldReferenceExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/Refly/CodeDom/Expressions/FieldReferenceExpression.cs -------------------------------------------------------------------------------- /src/Refly/CodeDom/Expressions/IndexerExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/Refly/CodeDom/Expressions/IndexerExpression.cs -------------------------------------------------------------------------------- /src/Refly/CodeDom/Expressions/MethodInvokeExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/Refly/CodeDom/Expressions/MethodInvokeExpression.cs -------------------------------------------------------------------------------- /src/Refly/CodeDom/Expressions/MethodReferenceExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/Refly/CodeDom/Expressions/MethodReferenceExpression.cs -------------------------------------------------------------------------------- /src/Refly/CodeDom/Expressions/NativeExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/Refly/CodeDom/Expressions/NativeExpression.cs -------------------------------------------------------------------------------- /src/Refly/CodeDom/Expressions/NativeMethodInvokeExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/Refly/CodeDom/Expressions/NativeMethodInvokeExpression.cs -------------------------------------------------------------------------------- /src/Refly/CodeDom/Expressions/NativeMethodReferenceExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/Refly/CodeDom/Expressions/NativeMethodReferenceExpression.cs -------------------------------------------------------------------------------- /src/Refly/CodeDom/Expressions/NativePropertyReferenceExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/Refly/CodeDom/Expressions/NativePropertyReferenceExpression.cs -------------------------------------------------------------------------------- /src/Refly/CodeDom/Expressions/ObjectCreationExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/Refly/CodeDom/Expressions/ObjectCreationExpression.cs -------------------------------------------------------------------------------- /src/Refly/CodeDom/Expressions/PrimitiveExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/Refly/CodeDom/Expressions/PrimitiveExpression.cs -------------------------------------------------------------------------------- /src/Refly/CodeDom/Expressions/PropertyReferenceExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/Refly/CodeDom/Expressions/PropertyReferenceExpression.cs -------------------------------------------------------------------------------- /src/Refly/CodeDom/Expressions/PropertySetValueReferenceExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/Refly/CodeDom/Expressions/PropertySetValueReferenceExpression.cs -------------------------------------------------------------------------------- /src/Refly/CodeDom/Expressions/SnippetExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/Refly/CodeDom/Expressions/SnippetExpression.cs -------------------------------------------------------------------------------- /src/Refly/CodeDom/Expressions/ThisReferenceExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/Refly/CodeDom/Expressions/ThisReferenceExpression.cs -------------------------------------------------------------------------------- /src/Refly/CodeDom/Expressions/TypeReferenceExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/Refly/CodeDom/Expressions/TypeReferenceExpression.cs -------------------------------------------------------------------------------- /src/Refly/CodeDom/Expressions/VariableReferenceExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/Refly/CodeDom/Expressions/VariableReferenceExpression.cs -------------------------------------------------------------------------------- /src/Refly/CodeDom/FieldDeclaration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/Refly/CodeDom/FieldDeclaration.cs -------------------------------------------------------------------------------- /src/Refly/CodeDom/ICustomAttributeProviderDeclaration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/Refly/CodeDom/ICustomAttributeProviderDeclaration.cs -------------------------------------------------------------------------------- /src/Refly/CodeDom/ITypeDeclaration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/Refly/CodeDom/ITypeDeclaration.cs -------------------------------------------------------------------------------- /src/Refly/CodeDom/ImplementationMemberDeclaration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/Refly/CodeDom/ImplementationMemberDeclaration.cs -------------------------------------------------------------------------------- /src/Refly/CodeDom/IndexerDeclaration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/Refly/CodeDom/IndexerDeclaration.cs -------------------------------------------------------------------------------- /src/Refly/CodeDom/MemberDeclaration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/Refly/CodeDom/MemberDeclaration.cs -------------------------------------------------------------------------------- /src/Refly/CodeDom/MethodDeclaration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/Refly/CodeDom/MethodDeclaration.cs -------------------------------------------------------------------------------- /src/Refly/CodeDom/MethodSignature.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/Refly/CodeDom/MethodSignature.cs -------------------------------------------------------------------------------- /src/Refly/CodeDom/NamespaceDeclaration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/Refly/CodeDom/NamespaceDeclaration.cs -------------------------------------------------------------------------------- /src/Refly/CodeDom/ParameterDeclaration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/Refly/CodeDom/ParameterDeclaration.cs -------------------------------------------------------------------------------- /src/Refly/CodeDom/PropertyDeclaration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/Refly/CodeDom/PropertyDeclaration.cs -------------------------------------------------------------------------------- /src/Refly/CodeDom/RealizedGenericTypeDeclaration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/Refly/CodeDom/RealizedGenericTypeDeclaration.cs -------------------------------------------------------------------------------- /src/Refly/CodeDom/Refly.CodeDom.Doc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/Refly/CodeDom/Refly.CodeDom.Doc.xml -------------------------------------------------------------------------------- /src/Refly/CodeDom/SnippetExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/Refly/CodeDom/SnippetExpression.cs -------------------------------------------------------------------------------- /src/Refly/CodeDom/Statements/AssignStatement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/Refly/CodeDom/Statements/AssignStatement.cs -------------------------------------------------------------------------------- /src/Refly/CodeDom/Statements/AttachRemoveEventStatement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/Refly/CodeDom/Statements/AttachRemoveEventStatement.cs -------------------------------------------------------------------------------- /src/Refly/CodeDom/Statements/CatchClauseStatement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/Refly/CodeDom/Statements/CatchClauseStatement.cs -------------------------------------------------------------------------------- /src/Refly/CodeDom/Statements/ConditionStatement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/Refly/CodeDom/Statements/ConditionStatement.cs -------------------------------------------------------------------------------- /src/Refly/CodeDom/Statements/ExpressionStatement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/Refly/CodeDom/Statements/ExpressionStatement.cs -------------------------------------------------------------------------------- /src/Refly/CodeDom/Statements/ForEachStatement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/Refly/CodeDom/Statements/ForEachStatement.cs -------------------------------------------------------------------------------- /src/Refly/CodeDom/Statements/IterationStatement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/Refly/CodeDom/Statements/IterationStatement.cs -------------------------------------------------------------------------------- /src/Refly/CodeDom/Statements/LabelStatement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/Refly/CodeDom/Statements/LabelStatement.cs -------------------------------------------------------------------------------- /src/Refly/CodeDom/Statements/MethodReturnStatement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/Refly/CodeDom/Statements/MethodReturnStatement.cs -------------------------------------------------------------------------------- /src/Refly/CodeDom/Statements/NativeStatement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/Refly/CodeDom/Statements/NativeStatement.cs -------------------------------------------------------------------------------- /src/Refly/CodeDom/Statements/SnippetStatement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/Refly/CodeDom/Statements/SnippetStatement.cs -------------------------------------------------------------------------------- /src/Refly/CodeDom/Statements/Statement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/Refly/CodeDom/Statements/Statement.cs -------------------------------------------------------------------------------- /src/Refly/CodeDom/Statements/ThrowExceptionStatement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/Refly/CodeDom/Statements/ThrowExceptionStatement.cs -------------------------------------------------------------------------------- /src/Refly/CodeDom/Statements/TryCatchFinallyStatement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/Refly/CodeDom/Statements/TryCatchFinallyStatement.cs -------------------------------------------------------------------------------- /src/Refly/CodeDom/Statements/VariableDeclarationStatement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/Refly/CodeDom/Statements/VariableDeclarationStatement.cs -------------------------------------------------------------------------------- /src/Refly/CodeDom/Stm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/Refly/CodeDom/Stm.cs -------------------------------------------------------------------------------- /src/Refly/CodeDom/StringEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/Refly/CodeDom/StringEventArgs.cs -------------------------------------------------------------------------------- /src/Refly/CodeDom/StringTypeDeclaration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/Refly/CodeDom/StringTypeDeclaration.cs -------------------------------------------------------------------------------- /src/Refly/CodeDom/ThrowedExceptionDeclaration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/Refly/CodeDom/ThrowedExceptionDeclaration.cs -------------------------------------------------------------------------------- /src/Refly/CodeDom/TypeParameterDeclaration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/Refly/CodeDom/TypeParameterDeclaration.cs -------------------------------------------------------------------------------- /src/Refly/CodeDom/TypeTypeDeclaration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/Refly/CodeDom/TypeTypeDeclaration.cs -------------------------------------------------------------------------------- /src/Refly/NameConformer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/Refly/NameConformer.cs -------------------------------------------------------------------------------- /src/Refly/Namer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/Refly/Namer.cs -------------------------------------------------------------------------------- /src/Refly/Refly.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/Refly/Refly.csproj -------------------------------------------------------------------------------- /src/Refly/Templates/CollectionTemplate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/Refly/Templates/CollectionTemplate.cs -------------------------------------------------------------------------------- /src/Refly/Templates/DataReaderTemplate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/Refly/Templates/DataReaderTemplate.cs -------------------------------------------------------------------------------- /src/Refly/Templates/DataTemplate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/Refly/Templates/DataTemplate.cs -------------------------------------------------------------------------------- /src/Refly/Templates/DictionaryTemplate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/Refly/Templates/DictionaryTemplate.cs -------------------------------------------------------------------------------- /src/Refly/Templates/ITemplate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/Refly/Templates/ITemplate.cs -------------------------------------------------------------------------------- /src/Refly/Templates/Import.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/Refly/Templates/Import.cs -------------------------------------------------------------------------------- /src/Refly/Templates/ImportCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/Refly/Templates/ImportCollection.cs -------------------------------------------------------------------------------- /src/Refly/Templates/Template.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/Refly/Templates/Template.cs -------------------------------------------------------------------------------- /src/Refly/TypeHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/NHibernate.Mapping.Attributes/HEAD/src/Refly/TypeHelper.cs --------------------------------------------------------------------------------