What are the WCF Service Reference .datasource files?
Asked Answered
R

4

93

What are the .datasource files that are automatically generated by "Create Service Reference" in Visual Studio? The comment in the file is this:

This file is automatically generated by Visual Studio .Net. It is used to store generic object data source configuration information.
Renaming the file extension or editing the content of this file may
cause the file to be unrecognizable by the program.

However, it sounds like these files are optional, so I'm wondering what they are used for. I'm also wondering if it is truly safe to delete them, since they often cause path length problems on XP.

http://www.eggheadcafe.com/conversation.aspx?messageid=34104031&threadid=34104026

Can anyone point me to some official MS documentation on these files?

Ruffin answered 17/9, 2009 at 14:50 Comment(0)
S
41

As far as I remember, they are just generated so that you can use the data contracts used in the service as object data sources for data binding against UI controls.

Sommelier answered 17/9, 2009 at 16:31 Comment(3)
So can you DISABLE their auto-generation? If so, how?Beni
@AuriRahimzadeh When you add service reference there is an option like "Reuse types in referenced assemblies". That way prevents auto generation of these objects in client. (Of course you should have a reference for that DataContract dll and version of the dlls should be the same in service project and client project)Gherlein
So it creates a zillion files I don't need to encourage poor design.Wadleigh
M
20

The .datasource files are optional, but they can be used in your client app to easily bind a data contract to a ui control. Here is an article explaining how to use them:

http://msdn.microsoft.com/en-us/library/ee373840.aspx

Maltese answered 18/8, 2011 at 18:4 Comment(0)
C
15

I was able to delete them from one of our projects. Project built fine, and loaded stuff from the database fine, so I'm assuming it was safe. I would like to hear someone who knows more about them weigh in on this element of the subject though.

Carpetbag answered 27/1, 2011 at 22:57 Comment(1)
I had the same experience. Deleted without issue after being told that the file names were too long.Blackburn
H
3

Expand your Reference.svcmap from visual studio.

Update reference.

And delete yellow warning datasources.

Hendren answered 2/6, 2017 at 7:16 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.