DbFunctionAttribute クラス

定義

CLR メソッドを LINQ クエリで使用できるように、静的 CLR メソッドをデータベース関数にマップします。 規則により、データベース関数の名前と既定のスキーマとして .NET メソッド名が使用されます。

[System.AttributeUsage(System.AttributeTargets.Method)]
public class DbFunctionAttribute : Attribute
[<System.AttributeUsage(System.AttributeTargets.Method)>]
type DbFunctionAttribute = class
    inherit Attribute
Public Class DbFunctionAttribute
Inherits Attribute
継承
DbFunctionAttribute
属性

注釈

詳細と例については、「 データベース関数 」を参照してください。

コンストラクター

DbFunctionAttribute()

DbFunctionAttribute クラスの新しいインスタンスを初期化します。

DbFunctionAttribute(String, String)

DbFunctionAttribute クラスの新しいインスタンスを初期化します。

プロパティ

FunctionName

データベース内の関数の名前。

IsBuiltIn

データベース関数が組み込まれているかどうかを示す値。

IsNullable

データベース関数が null の結果を返すことができるかどうかを示す値。

IsNullableHasValue

値が明示的に設定されているかどうかを IsNullable 確認します。

Name

データベース内の関数の名前。

Schema

データベース内の関数のスキーマ。

適用対象