Table of Contents

Interface IAnnotation

Namespace
LinqToDB.Internal.Infrastructure
Assembly
linq2db.dll

An arbitrary piece of metadata that can be stored on an object that implements IReadOnlyAnnotatable.

This interface is typically used by linq2db providers and extensions. It is generally not used in application code.

public interface IAnnotation
Extension Methods

Properties

Name

Gets the key of this annotation.

string Name { get; }

Property Value

string

Value

Gets the value assigned to this annotation.

object? Value { get; }

Property Value

object