mirror of
https://github.com/zoriya/EntityFrameworkCore.Projectables.git
synced 2026-05-18 09:18:56 +00:00
Added minimal docs on the projectable attribute
This commit is contained in:
@@ -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; }
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user