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
n23http://vos.openlinksw.com/wiki/main/VOS/VirtEntityFrameworkSybaseDatService/EntityFrameworksSybaseDataService2.
n29http://vos.openlinksw.com:80/wiki/main/VOS/VirtEntityFrameworkSybaseDatService/.
dctermshttp://purl.org/dc/terms/
atomhttp://atomowl.org/ontologies/atomrdf#
foafhttp://xmlns.com/foaf/0.1/
n27http://vos.openlinksw.com/dataspace/services/wiki/
n21http://vos.openlinksw.com/wiki/main/VOS/VirtEntityFrameworkSybaseDatService/VirtAdoNetDataServices_16.
oplhttp://www.openlinksw.com/schema/attribution#
n2http://vos.openlinksw.com/dataspace/owiki/wiki/VOS/
dchttp://purl.org/dc/elements/1.1/
n9http://vos.openlinksw.com/dataspace/dav#
rdfshttp://www.w3.org/2000/01/rdf-schema#
n28http://rdfs.org/sioc/services#
n4http://vos.openlinksw.com:80/wiki/main/VOS/VirtEntityFrameworkSybaseDatService/._.DS_Store.
n10http://vos.openlinksw.com/dataspace/person/dav#
n26http://vos.openlinksw.com/wiki/main/VOS/VirtEntityFrameworkSybaseDatService/VirtAdoNetDataServices_4.
siocthttp://rdfs.org/sioc/types#
n14http://vos.openlinksw.com:80/wiki/main/VOS/VirtEntityFrameworkSybaseDatService/._.
n18http://vos.openlinksw.com/dataspace/owiki/wiki/
n16http://vos.openlinksw.com/wiki/main/VOS/VirtEntityFrameworkSybaseDatService/._.
n20http://host/vdir/Virtuoso.svc/publishers(
n19http://vos.openlinksw.com/wiki/main/VOS/VirtEntityFrameworkSybaseDatService/VirtAdoNetDataServices_15.
rdfhttp://www.w3.org/1999/02/22-rdf-syntax-ns#
n25http://vos.openlinksw.com/dataspace/owiki/wiki/VOS/VirtEntityFrameworkSybaseDatService/sioc.
n8http://vos.openlinksw.com/dataspace/owiki#
n22http://vos.openlinksw.com/wiki/main/VOS/VirtEntityFrameworkSybaseDatService/EntityFrameworksSybaseDataService1.
xsdhhttp://www.w3.org/2001/XMLSchema#
n17http://vos.openlinksw.com/dataspace/%28NULL%29/wiki/VOS/
n15http://vos.openlinksw.com/wiki/main/VOS/VirtEntityFrameworkSybaseDatService/.
n13http://vos.openlinksw.com/dataspace/person/owiki#
siochttp://rdfs.org/sioc/ns#
Subject Item
n10:this
foaf:made
n2:VirtEntityFrameworkSybaseDatService
Subject Item
n9:this
sioc:creator_of
n2:VirtEntityFrameworkSybaseDatService
Subject Item
n27:item
n28:services_of
n2:VirtEntityFrameworkSybaseDatService
Subject Item
n8:this
sioc:creator_of
n2:VirtEntityFrameworkSybaseDatService
Subject Item
n18:VOS
sioc:container_of
n2:VirtEntityFrameworkSybaseDatService
atom:entry
n2:VirtEntityFrameworkSybaseDatService
atom:contains
n2:VirtEntityFrameworkSybaseDatService
Subject Item
n2:VirtSybaseEntityFrameworkUsage
sioc:links_to
n2:VirtEntityFrameworkSybaseDatService
Subject Item
n2:VirtEntityFrameworkSybaseDatService
rdf:type
sioct:Comment atom:Entry
dcterms:created
2017-06-13T05:44:28.576486
dcterms:modified
2017-06-13T05:44:28.576486
rdfs:label
VirtEntityFrameworkSybaseDatService
foaf:maker
n13:this n10:this
dc:title
VirtEntityFrameworkSybaseDatService
opl:isDescribedUsing
n25:rdf
sioc:has_creator
n8:this n9:this
sioc:attachment
n4:LRuqPe n14:DS_Store n15:DS_Store n16:DS_Store n19:png n21:png n22:png n23:png n26:png n29:DS_Store
sioc:content
%VOSWARNING% %META:TOPICPARENT{name="VirtSybaseEntityFrameworkUsage"}% ---+++Creating an ADO.Net Data Service An ADO.Net Data Service for the Sybase tables can be created using the Entity Data Model created in the [[VirtSybaseEDM][Creating EDM in Visual Studio 2008]] section. 1 Open the <b><nop>VirtuosoDataService</b> project created in the [[VirtSybaseEDM][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.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<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 that displays the list of tables/entities for the P2 database catalog. %BR%%BR%<img src="%ATTACHURLPATH%/EntityFrameworksSybaseDataService1.png" style="wikiautogen"/>%BR%%BR% 1 To access a specific entity instance like the publisher table publisher number 0736 record, use this convention: <b>http://host/vdir/Virtuoso.svc/publishers("0736")<b>. %BR%%BR%<img src="%ATTACHURLPATH%/EntityFrameworksSybaseDataService2.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
f8461ca2684693d1aa25dd34568fc281
sioc:link
n2:VirtEntityFrameworkSybaseDatService
sioc:has_container
n18:VOS
n28:has_services
n27:item
atom:title
VirtEntityFrameworkSybaseDatService
sioc:links_to
n17:VirtSybaseEDM n20:
atom:source
n18:VOS
atom:author
n10:this
atom:published
2017-06-13T05:44:28Z
atom:updated
2017-06-13T05:44:28Z
sioc:topic
n18:VOS