File: System\ComponentModel\DataAnnotations\Schema\NotMappedAttribute.cs | Web Access |
Project: src\src\libraries\System.ComponentModel.Annotations\src\System.ComponentModel.Annotations.csproj (System.ComponentModel.Annotations) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. namespace System.ComponentModel.DataAnnotations.Schema { /// <summary> /// Denotes that a property or class should be excluded from database mapping. /// </summary> [AttributeUsage(AttributeTargets.Property | AttributeTargets.Field | AttributeTargets.Class, AllowMultiple = false)] public class NotMappedAttribute : Attribute { } } |