This HTML5 document contains 42 embedded RDF statements represented using HTML+Microdata notation.

The embedded RDF content will be recognized by any processor of HTML5 Microdata.

PrefixNamespace IRI
dctermshttp://purl.org/dc/terms/
atomhttp://atomowl.org/ontologies/atomrdf#
foafhttp://xmlns.com/foaf/0.1/
n5http://vos.openlinksw.com/dataspace/services/wiki/
oplhttp://www.openlinksw.com/schema/attribution#
n2http://vos.openlinksw.com/dataspace/owiki/wiki/VOS/
n27http://vos.openlinksw.com/wiki/main/VOS/VirtEntityFrameworkIngresDatService/VirtAdoNetDataServices_16.
n30http://vos.openlinksw.com:80/wiki/main/VOS/VirtEntityFrameworkIngresDatService/._.DS_Store.
dchttp://purl.org/dc/elements/1.1/
n12http://vos.openlinksw.com/dataspace/dav#
rdfshttp://www.w3.org/2000/01/rdf-schema#
n16http://vos.openlinksw.com:80/wiki/main/VOS/VirtEntityFrameworkIngresDatService/._.
n24http://vos.openlinksw.com/wiki/main/VOS/VirtEntityFrameworkIngresDatService/VirtEntityFrameworkIngresDatService1.
n4http://rdfs.org/sioc/services#
n7http://vos.openlinksw.com/dataspace/person/dav#
siocthttp://rdfs.org/sioc/types#
n23http://vos.openlinksw.com/wiki/main/VOS/VirtEntityFrameworkIngresDatService/VirtAdoNetDataServices_4.
n21http://vos.openlinksw.com/wiki/main/VOS/VirtEntityFrameworkIngresDatService/._.
n9http://vos.openlinksw.com/dataspace/owiki/wiki/
n26http://vos.openlinksw.com/wiki/main/VOS/VirtEntityFrameworkIngresDatService/VirtAdoNetDataServices_15.
n29http://vos.openlinksw.com/dataspace/owiki/wiki/VOS/VirtEntityFrameworkIngresDatService/sioc.
rdfhttp://www.w3.org/1999/02/22-rdf-syntax-ns#
n11http://host/vdir/Virtuoso.svc/cust_orders(5500)
n14http://vos.openlinksw.com/dataspace/owiki#
xsdhhttp://www.w3.org/2001/XMLSchema#
n13http://vos.openlinksw.com:80/wiki/main/VOS/VirtEntityFrameworkIngresDatService/.
n20http://vos.openlinksw.com/wiki/main/VOS/VirtEntityFrameworkIngresDatService/.
n10http://vos.openlinksw.com/dataspace/%28NULL%29/wiki/VOS/
n22http://vos.openlinksw.com/dataspace/person/owiki#
siochttp://rdfs.org/sioc/ns#
n15http://vos.openlinksw.com/wiki/main/VOS/VirtEntityFrameworkIngresDatService/VirtEntityFrameworkIngresDatService2.
Subject Item
n7:this
foaf:made
n2:VirtEntityFrameworkIngresDatService
Subject Item
n12:this
sioc:creator_of
n2:VirtEntityFrameworkIngresDatService
Subject Item
n5:item
n4:services_of
n2:VirtEntityFrameworkIngresDatService
Subject Item
n14:this
sioc:creator_of
n2:VirtEntityFrameworkIngresDatService
Subject Item
n9:VOS
sioc:container_of
n2:VirtEntityFrameworkIngresDatService
atom:entry
n2:VirtEntityFrameworkIngresDatService
atom:contains
n2:VirtEntityFrameworkIngresDatService
Subject Item
n2:VirtEntityFrameworkIngresDatService
rdf:type
sioct:Comment atom:Entry
dcterms:created
2017-06-13T05:38:25.926910
dcterms:modified
2017-06-13T05:38:25.926910
rdfs:label
VirtEntityFrameworkIngresDatService
foaf:maker
n7:this n22:this
dc:title
VirtEntityFrameworkIngresDatService
opl:isDescribedUsing
n29:rdf
sioc:has_creator
n14:this n12:this
sioc:attachment
n13:DS_Store n15:png n16:DS_Store n20:DS_Store n21:DS_Store n23:png n24:png n26:png n27:png n30:yG86Z2
sioc:content
%VOSWARNING% %META:TOPICPARENT{name="VirtIngresEntityFrameworkUsage"}% ---+++Creating an ADO.Net Data Service An ADO.Net Data Service for the Ingres tables can be created using the Entity Data Model created in the [[VirtIngresEDM][Creating EDM in Visual Studio 2008]] section. 1 Open the <b><nop>VirtuosoDataService</b> project created in the [[VirtIngresEDM][Creating EDM in Visual Studio 2008]] section.%BR%%BR% 1 Right click on the <b><nop>VirtuosoDataService</b> project name in the <b>Solution Explorer</b> pane. Then, select the <b>Add</b> -> <b>New Item</b> menu options. %BR%%BR%<img src="%ATTACHURLPATH%/VirtAdoNetDataServices_4.png" style="wikiautogen"/>%BR%%BR% 1 The <b>Add New Item</b> dialog will appear. Choose the <b>ADO.NET Data Service</b> template. Give it the name <b>Virtuoso.svc</b>, and click <b>Add</b> to create the ADO.Net Data Service. %BR%%BR%<img src="%ATTACHURLPATH%/VirtAdoNetDataServices_15.png" style="wikiautogen"/>%BR%%BR% 1 In the newly created <b>Virtuoso.svc.cs</b> Data Service file, add the data source class name of <b><nop>VirtuosoEntities</b> (note this is the name set in the Creating EDM in Visual Studio 2008 section) as the <b><nop>DataService</b> name. Enable access to the Data Service by adding the entry <b>config.<nop>SetEntitySetAccessRule("*", <nop>EntitySetRights.All);</b> in the <b><nop>InitializeService</b> method. <verbatim> // C# using System; using System.Web; using System.Collections.Generic; using System.ServiceModel.Web; using System.Linq; using System.Data.Services; namespace SimpleDataService { public class Northwind : DataService<VirtuosoDemoEntities> { public static void InitializeService(IDataServiceConfiguration config) { config.SetEntitySetAccessRule("*", EntitySetRights.All); } } } </verbatim> %BR%%BR%<img src="%ATTACHURLPATH%/VirtAdoNetDataServices_16.png" style="wikiautogen"/>%BR%%BR% 1 To test the Data Service, simply hit <b>Ctrl+F5</b> within Visual Studio. This will start the development web server, run the Data Services server inside, and load a Web browser page displaying the list of available tables/entities for the Tutorial database catalog. %BR%%BR%<img src="%ATTACHURLPATH%/VirtEntityFrameworkIngresDatService1.png" style="wikiautogen"/>%BR%%BR% 1 To access a specific entity instance like the <b>cust_orders</b> table order number <b>5500</b> record, use this convention: <b>http://host/vdir/Virtuoso.svc/cust_orders(5500) </b> . %BR%%BR%<img src="%ATTACHURLPATH%/VirtEntityFrameworkIngresDatService2.png" style="wikiautogen"/>%BR%%BR% ---+++NOTES 1 <b>Important</b> - To view <b>Atom</b> (the default format returned by an ADO.NET Data Service) in Internet Explorer, you must first ensure that <b>Feed Reading View</b> is turned <b>off</b>. This can be done on the <b>Content tab</b> of <b>Tools<b> in <b>Internet Options</b>.%BR%%BR% 1 If a Data Services entity instance URI page fails to load, you can turn <b>Verbose</b> errors on by adding <b>config.UseVerboseErrors = true;</b> in the <b>virtuoso.svc.cs <nop>InitializeService </b> method. This enables you to obtain more detailed information from the server as to why the page failed to load: <verbatim> public static void InitializeService(IDataServiceConfiguration config) { config.UseVerboseErrors = true; config.SetEntitySetAccessRule("*", EntitySetRights.All); } </verbatim>
sioc:id
41863ac8c5552eb2207b66ae407db95d
sioc:link
n2:VirtEntityFrameworkIngresDatService
sioc:has_container
n9:VOS
n4:has_services
n5:item
atom:title
VirtEntityFrameworkIngresDatService
sioc:links_to
n10:VirtIngresEDM n11:
atom:source
n9:VOS
atom:author
n7:this
atom:published
2017-06-13T05:38:25Z
atom:updated
2017-06-13T05:38:25Z
sioc:topic
n9:VOS
Subject Item
n2:VirtIngresEntityFrameworkUsage
sioc:links_to
n2:VirtEntityFrameworkIngresDatService