Namespace error 'LinqToDb' could not be found

1

I downloaded Linq2Db.Firebird via Nuget and changed the file as instructed:

<#@ template language="C#" debug="True" hostSpecific="True"                          #>
<#@ output extension=".generated.cs"                                                 #>
<#@ include file="$(ProjectDir)LinqToDB.Templates\LinqToDB.Firebird.ttinclude"       #>
<#@ include file="$(ProjectDir)LinqToDB.Templates\PluralizationService.ttinclude"    #>
<#
    /*
        1. Copy this file to a folder where you would like to generate your data model,
           rename it, and delete .txt extension. For example:

            MyProject
                DataModels
                    MyDatabase.tt

        2. Modify the connection settings below to connect to your database.

        3. Add connection string to the web/app.config file:

            <connectionStrings>
                <add name="dados" connectionString="DataSource=localhost;Database=E:\OneDrive\VisualStudio\BancoFirebird\BancoFirebird\DADOS.GDB;User Id=SYSDBA;Password=masterkey" providerName="Firebird" />
            </connectionStrings>

        4. To access your database use the following code:

            using (var db = new MyDatabaseDB())
            {
                var q =
                    from c in db.Customers
                    select c;

                foreach (var c in q)
                    Console.WriteLine(c.ContactName);
            }

        5. See more at https://github.com/linq2db/t4models/blob/master/Templates/ReadMe.LinqToDB.md.
    */

    NamespaceName = "DataModels";

    LoadFirebirdMetadata("localhost", @"E:\OneDrive\VisualStudio\BancoFirebird\BancoFirebird\DADOS.GDB");
//  LoadFirebirdMetadata(string server, string database, string uid, string password);
//  LoadFirebirdMetadata(string connectionString);

    GenerateModel();
#>

I did steps 1 to 3:

  • I copied the file to a folder called DataModels and renamed it to data.tt
  • I changed the configuration, as you can see in the file:

    LoadFirebirdMetadata ("localhost", "E: \ OneDrive \ VisualStudio \ BancoFirebird \ BancoFirebird \ DADOS.GDB");

  • I changed the connection string, as you can see in the above file and included in app.config.
  • however, I still get the error:

    Compiling transformation: The type or namespace name 'LinqToDB' could not be found (are you missing a using directive or an assembly reference?)    BancoFirebird
    

    In this line:

    asked by anonymous 14.01.2017 / 21:00

    0 answers