here is a code :
using System;
using Nemerle.Collections;
using Nemerle.Text;
//using Nemerle.Utility;
using System.Linq;
using Nemerle.Data.Linq;
using NUnit.Framework;
using System.Data.Linq;
namespace LinqTestes
{
[TestFixture]
public class Linq2SqlTests
{
static ReadConnectionString() : string
{
def currAssm = Uri(typeof(Linq2SqlTests).Assembly.CodeBase).LocalPath;
def path = IO.Path.GetDirectoryName(currAssm);
def connStrPath = IO.Path.Combine(path, "connectionString.txt");
def connStr =
try { IO.File.ReadAllText(connStrPath, Text.Encoding.UTF8) }
catch { | e is IO.FileNotFoundException =>
throw IO.FileNotFoundException(
$"You should define connection string to NorthWind DB in: '$connStrPath'",
e.FileName, e) };
connStr
}
_conn : LinqDataConnection = LinqDataConnection(ReadConnectionString());
and I'm making the same but what is LinqDataConnection type ? and where does it comes from ?