mirror of
https://github.com/zoriya/EntityFrameworkCore.Projectables.git
synced 2026-05-27 12:31:47 +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
|
namespace EntityFrameworkCore.Projectables
|
||||||
{
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// Mark this method or property as a Projectable
|
||||||
|
/// </summary>
|
||||||
[AttributeUsage(AttributeTargets.Method | AttributeTargets.Property, Inherited = true, AllowMultiple = false)]
|
[AttributeUsage(AttributeTargets.Method | AttributeTargets.Property, Inherited = true, AllowMultiple = false)]
|
||||||
public sealed class ProjectableAttribute : Attribute
|
public sealed class ProjectableAttribute : Attribute
|
||||||
{
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// Get or set how null-conditional operators are handeled
|
||||||
|
/// </summary>
|
||||||
public NullConditionalRewriteSupport NullConditionalRewriteSupport { get; set; }
|
public NullConditionalRewriteSupport NullConditionalRewriteSupport { get; set; }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user