Error2Build failed due to validation errors in C:\RPT.dbml. Open the file and resolve the issues in the Error List, then try rebuilding the project.
There is nothing showing me where the exact error is coming from. There is a reference setup for System.Configuration.
The following code is from the RPT.designer.cs
namespace cli
{
using System.Data.Linq;
using System.Data.Linq.Mapping;
using System.Data;
using System.Collections.Generic;
using System.Reflection;
using System.Linq;
using System.Linq.Expressions;
using System.ComponentModel;
using System;
using System.Configuration;
[System.Data.Linq.Mapping.DatabaseAttribute(Name="DEV")]
public partial class RPTDataContext : System.Data.Linq.DataContext
{
private static System.Data.Linq.Mapping.MappingSource mappingSource = new AttributeMappingSource();
public RPTDataContext() :
base(ConfigurationManager.ConnectionStrings["DEVConnectionString"].ConnectionString.ToString(), mappingSource)
{
OnCreated();
}
The following code is from RPT.cs file:
namespace cli
{
partial class RPTDataContext
{
}
}
Here is the code in the app.config file:
providerName="System.Data.SqlClient" />
Thus can you tell me and/or show me in code how to fix this problem?
VulpesPosted Nov 29, 2012, 3:57 PM
http://msdn.microsoft.com/en-us/library/bb399400.aspx
However, it may be an obscure error that sometimes crops up with LINQ to SQL. If you can't see anything wrong with the .dbml file then I'd check out this blog for a couple of possible workarounds:
http://sivacorner.blogspot.co.uk/2011/08/build-failed-due-to-validation-errors.html