TeamMentor.CoreLib.TM_Xml_Database_ExtensionMethods_XmlDataSources_View.xmlDB_View C# (CSharp) Method

xmlDB_View() public static method

public static xmlDB_View ( this tmDatabase, System.Guid viewId ) : urn.microsoft.guidanceexplorer.View
tmDatabase this
viewId System.Guid
return urn.microsoft.guidanceexplorer.View
        public static urn.microsoft.guidanceexplorer.View xmlDB_View(this TM_Xml_Database tmDatabase, Guid viewId)
        {
            return (from view in tmDatabase.xmlDB_Views()
                where view.id == viewId.str()
                select view).first();
        }

Same methods

TM_Xml_Database_ExtensionMethods_XmlDataSources_View::xmlDB_View ( this folder, string viewCaption ) : urn.microsoft.guidanceexplorer.View