Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
1answer
938 views

Preserving Order In Sequence of Choices (LINQ To XSD)

Given the following XML example we could imagine a schema defining Root as containing a sequence of unbound number of choices between Type1 and Type2. <Root> <Type1 /> <Type2 ...
2
votes
0answers
426 views

Linq to XSD for Silverlight

It appears that the LINQ to XSD project has some dependencies on types that are not available in Silverlight, such as System.Xml.Schema.XmlSchemaType. Considering that, I know it would take a ...
2
votes
2answers
219 views

How do you tell the C# compiler that a symbol is a type and not a variable when they share the same name?

When you have a local variable named the same as a type, is there any way to tell the compiler that the symbol you have given is a type or a variable? For instance consider (and ignore all type ...
2
votes
1answer
132 views

Linq2XSD - Looking for articles, tutorials and experiences of

Only just found out about this. Does anyone have any links to some good sites talking about this? Its features, bugs, limitations. (obviously I have searched, so am looking for info that wont be on ...
2
votes
1answer
343 views

Experiences with LINQ2xsd?

I am looking for more advanced alternatives to xsd.exe. I am just about to start a fairly simple project and decided to try using LINQ2XSD. The project has now been released as open source to ...
1
vote
1answer
120 views

Using named simple-types with LINQ to XSD results in compiler error

I have an XSD containing a simple type like this: <xs:simpleType name="csharpName" id="csharpName"> <xs:restriction base="xs:string"> <xs:pattern ...
1
vote
2answers
570 views

LINQ to XSD in Visual Studio 2010 Beta2

I've been looking around and I was wondering if this is available in VS10 beta2. So far all I've seen is the Linq to XSD alpha 0.2 preview that works for VS 2008
0
votes
0answers
93 views

Duplicating Code Across Multiple Namespaces and Partial Classes

I'm using LinqToXSD to generate document models (code) based on a client's XSD's. Since these XSD's share common structure each time I generate a document model some objects get duplicated. To prevent ...
0
votes
0answers
138 views

How to delete an XML element using strongly - typed Linq To XSD?

I need to find out how can I delete an element from an existing XML. I used Linq to XSD to create C# classes. Then I made a data-binding object, so that I could easily put the structure to Windows ...
0
votes
2answers
67 views

Query xml with linq

I am trying to query some informations from xml with linq but I am getting error like this - Yes I have defined - using System.Linq Could you tell me, where is a problem? Thanks Error 1 Could ...
0
votes
0answers
37 views

Linq To XSD SchemaOrigin

In my generated code my types' TypeOrigin is set to SchemaOrigin.Fragment (instead of SchemaOrigin.Element) , and that causes me a lot of Assert warnings. What am I doing wrong, what does TypeOrigin ...
0
votes
1answer
478 views

How to get data from XML files into business objects?

I need to build a view in my MVC 2 application that allows a user to upload an XML file. The XML files will conform to an XSD. I need to parse the XML and extract data to populate C# objects that ...
0
votes
1answer
205 views

Simpler Linq to XML queries with the DLR

I have a question regarding Linq to XML queries and how we could possibly make them more readable using the new dynamic keyword. At the moment I am writing things like: var result = from p in ...
0
votes
2answers
1k views

How can I use Linq with Dataset.xsd files?

How can I use Linq with Dataset.xsd files? I've looked at Linq-to-Datasets and Linq-to-XSD but they don't really seem to work directly with the Visual Studio DataSet.xsd files. EDIT: I actually ...