Added minimal docs on the projectable attribute

This commit is contained in:
Koen Bekkenutte
2021-11-15 20:34:36 +08:00
parent ac90b5b1a1
commit 97bbc003fe
@@ -6,9 +6,15 @@ using System.Threading.Tasks;
namespace EntityFrameworkCore.Projectables
{
/// <summary>
/// Mark this method or property as a Projectable
/// </summary>
[AttributeUsage(AttributeTargets.Method | AttributeTargets.Property, Inherited = true, AllowMultiple = false)]
public sealed class ProjectableAttribute : Attribute
{
/// <summary>
/// Get or set how null-conditional operators are handeled
/// </summary>
public NullConditionalRewriteSupport NullConditionalRewriteSupport { get; set; }
}
}