views:

28

answers:

1

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 ?

+1  A: 

LinqDataConnection is a type specific to the nemerle project they've created. You can see how it works here:

Nemerle SVN (Note: their site seems to be having gateway issues at the moment)

Nick Craver
http://nemerle.rsdn.ru/Main_Page you are welcome :/ even I can see this file in my svn. It's DataContext. Thank you
nCdy