Proprietà Context.CurrentMiningModel
Gets the current mining model.
Spazio dei nomi Microsoft.AnalysisServices.AdomdServer
Assembly: msmgdsrv (in msmgdsrv.dll)
Sintassi
'Dichiarazione
Public Shared ReadOnly Property CurrentMiningModel As MiningModel
Get
'Utilizzo
Dim value As MiningModel
value = Context.CurrentMiningModel
public static MiningModel CurrentMiningModel { get; }
public:
static property MiningModel^ CurrentMiningModel {
MiningModel^ get ();
}
static member CurrentMiningModel : MiningModel
static function get CurrentMiningModel () : MiningModel
Valore proprietà
Tipo: Microsoft.AnalysisServices.AdomdServer.MiningModel
A MiningModel that represents the current mining model; nullriferimento Null (Nothing in Visual Basic). if not applicable.
Osservazioni
The return value will be nullriferimento Null (Nothing in Visual Basic). when called from a Multidimensional Expressions (MDX) query, or as a stored procedure. For more information on the differences between user-defined functions (UDFs) and stored orocedures, see Funzioni definite dall'utente e stored procedure.
Esempi
In the following example, a UDF is created that returns the node description for a specified node. It uses the current context in which it is being run, retrieves the node from the current mining model (determined by the DMX FROM clause):
public string GetNodeDescription(string nodeUniqueName)
{
return Context.CurrentMiningModel.GetNodeFromUniqueName(nodeUniqueName).Description;
}