Free cookie consent management tool by TermsFeed Policy Generator

source: branches/ClientManagement/HeuristicLab.Services.Authentication/HeuristicLab.Services.Authentication.DataAccess/ClientManagment.dbml @ 4731

Last change on this file since 4731 was 4731, checked in by jhaider, 13 years ago

#1197
Interface implemantation

File size: 2.4 KB
Line 
1<?xml version="1.0" encoding="utf-8"?><Database Class="ClientManagmentDataContext" xmlns="http://schemas.microsoft.com/linqtosql/dbml/2007">
2  <Table Name="" Member="Resources">
3    <Type Name="Resource" InheritanceCode="Resource" IsInheritanceDefault="true">
4      <Column Name="ResourceID" Member="Id" Storage="_ResourceID" AutoSync="OnInsert" Type="System.Guid" IsPrimaryKey="true" CanBeNull="false" />
5      <Column Name="Name" Type="System.String" CanBeNull="false" />
6      <Column Name="Description" Type="System.String" CanBeNull="true" />
7      <Column Name="ResourceType" Type="System.Guid" CanBeNull="false" IsDiscriminator="true" />
8      <Association Name="Resource_ResourceResourceGroup" Member="Clients" Storage="_ResourceResourceGroups" ThisKey="Id" OtherKey="ResourceId" Type="ResourceResourceGroup" />
9      <Association Name="Resource_ResourceResourceGroup1" Member="ResourceGroups" Storage="_ResourceResourceGroups1" ThisKey="Id" OtherKey="ResourceGroupId" Type="ResourceResourceGroup" />
10      <Type Name="Client" InheritanceCode="Client">
11        <Column Name="ProcessorType" Type="System.String" CanBeNull="true" />
12        <Column Name="NumberOfProcessors" Type="System.String" CanBeNull="true" />
13        <Column Name="NumberOfThreads" Type="System.String" CanBeNull="true" />
14        <Column Name="IPAdress" Type="System.String" CanBeNull="true" />
15        <Column Name="MemorySize" Type="System.String" CanBeNull="true" />
16        <Column Name="OperatingSystem" Type="System.String" CanBeNull="true" />
17      </Type>
18      <Type Name="ResourceGroup" InheritanceCode="ResourceGroup" />
19    </Type>
20  </Table>
21  <Table Name="" Member="ResourceResourceGroups">
22    <Type Name="ResourceResourceGroup">
23      <Column Name="ResourceID" Member="ResourceId" Storage="_ResourceID" Type="System.Guid" IsPrimaryKey="true" CanBeNull="false" />
24      <Column Name="ResourceGroupID" Member="ResourceGroupId" Storage="_ResourceGroupID" Type="System.Guid" IsPrimaryKey="true" CanBeNull="false" />
25      <Association Name="Resource_ResourceResourceGroup" Member="Client" Storage="_Resource" ThisKey="ResourceId" OtherKey="Id" Type="Resource" IsForeignKey="true" />
26      <Association Name="Resource_ResourceResourceGroup1" Member="ResourceGroup" Storage="_Resource1" ThisKey="ResourceGroupId" OtherKey="Id" Type="Resource" IsForeignKey="true" />
27    </Type>
28  </Table>
29</Database>
Note: See TracBrowser for help on using the repository browser.