diff --git a/src/EntityFrameworkCore.Projectables.Abstractions/ProjectableAttribute.cs b/src/EntityFrameworkCore.Projectables.Abstractions/ProjectableAttribute.cs
index dd4a368..14800e6 100644
--- a/src/EntityFrameworkCore.Projectables.Abstractions/ProjectableAttribute.cs
+++ b/src/EntityFrameworkCore.Projectables.Abstractions/ProjectableAttribute.cs
@@ -6,9 +6,15 @@ using System.Threading.Tasks;
namespace EntityFrameworkCore.Projectables
{
+ ///
+ /// Mark this method or property as a Projectable
+ ///
[AttributeUsage(AttributeTargets.Method | AttributeTargets.Property, Inherited = true, AllowMultiple = false)]
public sealed class ProjectableAttribute : Attribute
{
+ ///
+ /// Get or set how null-conditional operators are handeled
+ ///
public NullConditionalRewriteSupport NullConditionalRewriteSupport { get; set; }
}
}