LinqToSQL _conn ? LinqToSQLConnection ?

Posted by nCdy on Stack Overflow See other posts from Stack Overflow or by nCdy
Published on 2010-03-18T13:39:54Z Indexed on 2010/03/18 13:51 UTC
Read the original article Hit count: 496

Filed under:
|
|
|

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 ?

© Stack Overflow or respective owner

Related posts about LINQ

Related posts about linq-to-sql