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
n19http://vos.openlinksw.com/wiki/main/VOS/VirtEntityFrameworkINFDatService/VirtAdoNetInfDataService_01.
dctermshttp://purl.org/dc/terms/
atomhttp://atomowl.org/ontologies/atomrdf#
n17http://vos.openlinksw.com/wiki/main/VOS/VirtEntityFrameworkINFDatService/VirtAdoNetInfDataService_04.
foafhttp://xmlns.com/foaf/0.1/
n2http://vos.openlinksw.com/dataspace/services/wiki/
oplhttp://www.openlinksw.com/schema/attribution#
n4http://vos.openlinksw.com/dataspace/owiki/wiki/VOS/
n24http://vos.openlinksw.com:80/wiki/main/VOS/VirtEntityFrameworkINFDatService/._.
n22http://vos.openlinksw.com/wiki/main/VOS/VirtEntityFrameworkINFDatService/.
dchttp://purl.org/dc/elements/1.1/
n23http://vos.openlinksw.com/wiki/main/VOS/VirtEntityFrameworkINFDatService/._.
n10http://vos.openlinksw.com/dataspace/dav#
rdfshttp://www.w3.org/2000/01/rdf-schema#
n14http://vos.openlinksw.com/wiki/main/VOS/VirtEntityFrameworkINFDatService/VirtAdoNetInfDataService_03.
n20http://host/vdir/WebDataService1.svc/customer(101)
n3http://rdfs.org/sioc/services#
n16http://vos.openlinksw.com/dataspace/person/dav#
siocthttp://rdfs.org/sioc/types#
n5http://vos.openlinksw.com/dataspace/owiki/wiki/
n30http://vos.openlinksw.com:80/wiki/main/VOS/VirtEntityFrameworkINFDatService/.
rdfhttp://www.w3.org/1999/02/22-rdf-syntax-ns#
n21http://vos.openlinksw.com/wiki/main/VOS/VirtEntityFrameworkINFDatService/VirtAdoNetInfDataService_02.
n27http://vos.openlinksw.com/dataspace/owiki/wiki/VOS/VirtEntityFrameworkINFDatService/sioc.
n8http://vos.openlinksw.com/dataspace/owiki#
n9http://vos.openlinksw.com:80/wiki/main/VOS/VirtEntityFrameworkINFDatService/._.DS_Store.
n13http://vos.openlinksw.com/wiki/main/VOS/VirtEntityFrameworkINFDatService/VirtAdoNetInfDataService_05.
xsdhhttp://www.w3.org/2001/XMLSchema#
n18http://vos.openlinksw.com/dataspace/%28NULL%29/wiki/VOS/
n28http://vos.openlinksw.com/dataspace/person/owiki#
siochttp://rdfs.org/sioc/ns#
Subject Item
n16:this
foaf:made
n4:VirtEntityFrameworkINFDatService
Subject Item
n10:this
sioc:creator_of
n4:VirtEntityFrameworkINFDatService
Subject Item
n2:item
n3:services_of
n4:VirtEntityFrameworkINFDatService
Subject Item
n8:this
sioc:creator_of
n4:VirtEntityFrameworkINFDatService
Subject Item
n5:VOS
sioc:container_of
n4:VirtEntityFrameworkINFDatService
atom:entry
n4:VirtEntityFrameworkINFDatService
atom:contains
n4:VirtEntityFrameworkINFDatService
Subject Item
n4:VirtEntityFrameworkINFDatService
rdf:type
sioct:Comment atom:Entry
dcterms:created
2017-06-13T05:38:29.980590
dcterms:modified
2017-06-13T05:38:29.980590
rdfs:label
VirtEntityFrameworkINFDatService
foaf:maker
n16:this n28:this
dc:title
VirtEntityFrameworkINFDatService
opl:isDescribedUsing
n27:rdf
sioc:has_creator
n8:this n10:this
sioc:attachment
n9:da5xUg n13:png n14:png n17:png n19:png n21:png n22:DS_Store n23:DS_Store n24:DS_Store n30:DS_Store
sioc:content
%VOSWARNING% %META:TOPICPARENT{name="VirtInformixEntityFrameworkUsage"}% ---+++Creating an ADO.NET Data Service An ADO.NET Data Service for the Informix tables can be created using the Entity Data Model created in the [[VirtINFEDM][Creating EDM in Visual Studio 2008]] section. 1 Open the <b>stores_demo</b> project created in the [[VirtINFEDM][Creating EDM in Visual Studio 2008]] section.%BR%%BR% 1 Right click on the <b>stores_demo</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%/VirtAdoNetInfDataService_01.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>WebDataService.svc</b>, and click <b>Add</b> to create the ADO.NET Data Service. %BR%%BR%<img src="%ATTACHURLPATH%/VirtAdoNetInfDataService_02.png" style="wikiautogen"/>%BR%%BR% 1 In the newly created <b>WebDataService1.svc.cs</b> Data Service file, add the data source class name of <b>stores_demoEntities</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.SetEntitySetAccessRule("*", 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<stores_demoDemoEntities> { public static void InitializeService(IDataServiceConfiguration config) { config.SetEntitySetAccessRule("*", EntitySetRights.All); } } } </verbatim> %BR%%BR%<img src="%ATTACHURLPATH%/VirtAdoNetInfDataService_03.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 tables/entities for the stores_demo database catalog. %BR%%BR%<img src="%ATTACHURLPATH%/VirtAdoNetInfDataService_04.png" style="wikiautogen"/>%BR%%BR% 1 To access a specific entity instance like the <b>CUSTOMERS</b> table customer number <b>101</b> record, use this convention <b>http://host/vdir/WebDataService1.svc/customer(101) </b> . %BR%%BR%<img src="%ATTACHURLPATH%/VirtAdoNetInfDataService_05.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><code>config.UseVerboseErrors = true;</code></b> in the <b><code>virtuoso.svc.cs</code> <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
d80e557a04a90995568265beabdb5959
sioc:link
n4:VirtEntityFrameworkINFDatService
sioc:has_container
n5:VOS
n3:has_services
n2:item
atom:title
VirtEntityFrameworkINFDatService
sioc:links_to
n18:VirtINFEDM n20:
atom:source
n5:VOS
atom:author
n16:this
atom:published
2017-06-13T05:38:29Z
atom:updated
2017-06-13T05:38:29Z
sioc:topic
n5:VOS
Subject Item
n4:VirtInformixEntityFrameworkUsage
sioc:links_to
n4:VirtEntityFrameworkINFDatService