From 97bbc003fe7459fe908e132c180d38ab27604c0d Mon Sep 17 00:00:00 2001 From: Koen Bekkenutte <2912652+kbekkenutte@users.noreply.github.com> Date: Mon, 15 Nov 2021 20:34:36 +0800 Subject: [PATCH] Added minimal docs on the projectable attribute --- .../ProjectableAttribute.cs | 6 ++++++ 1 file changed, 6 insertions(+) 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; } } }