亚音速3 alpha + ado.net数据服务任何样本

时间:2009-05-27 06:27:04

标签: subsonic wcf-data-services

互联网上有一些资源描述了Astoria的亚音速预览2:

http://theruntime.com/blogs/jaykimble/archive/2008/11/18/quotsubsonicquot-for-services-found-subsonic-3--ado.net-data-services.aspx

的工作样本

http://code.msdn.microsoft.com/SubSonicForADONETDS

我将所有相应的更改应用于亚音速tt(s),但是没有设法使MSDN项目工作。 消除后:

a)Astoria不喜欢        QuerySurface.tt中的私有DB(){},所以我盲目地将构造函数设为public

b)不确定如何生成复合主键

<# if(EnableForUseWIthAstoria) {
#> [System.Data.Services.Common.DataServiceKey("<#=pk#>")] <# }#> 

结果

[System.Data.Services.Common.DataServiceKey("")] 

而不是

[System.Data.Services.Common.DataServiceKey("OrderID", "ProductID")] 

所以刚刚排除了表格。

目前的障碍

        var q = from cust in ctx.Customers
                where cust.CustomerID == "ROMEY"
                select cust;

        Customers c = q.First();

导致异常: 未找到“客户”

细分的资源

有没有人尝试过或知道另一个最新最好的样本存在?

4 个答案:

答案 0 :(得分:1)

有关数据服务的演示模板,请参阅此问题:

http://code.google.com/p/subsonicthree/issues/detail?id=53

答案 1 :(得分:0)

是的,我使用IUpdatable接口检入了ss3版本,并从UpdatableDatabase类继承了DB查询表面类。我还为它包括了一个入门测试项目。好的部分是你可以使用Uri构建一个DB类,并开始对服务进行操作。但它不是当前核心的一部分,它需要一个新的类和一些重新排列,以及次要的模板更改。我认为这是人们将继续重塑这一事物而不是以前的工作为基础的领域之一。我想进入项目有几个变化,但他们没有做到这一点,比如在运行时设置多个数据库,ado.net服务等。我想我必须永久地分支我自己的版本。

This issue有一个显示UpdatableDatabase类的附件。

我将此添加到SubSonicClasses.ttinclude

public string PrimaryKey
{
    get { return Utilities.CleanUp(this.Schema.GetTablePrimaryKey(TableSchema, TableNameRaw)); }
}

...

[System.Data.Services.Common.DataServiceKey("<#=PrimaryKey #>")]

我看到我在Northwind中使用OrderDetails作弊,并通过直接编辑文件添加了第二个键。你可以在DatabaseSchema.ttinclude

中轻松编写这样的方法
public string[] GetTablePrimaryKeys(string tableSchema, string tableName)

并建立正确的字符串。

答案 2 :(得分:0)

我不知道是否可以压缩解决方案并将其解决,因为涉及亚音速许可证。它不是亚正统的,大约2个月(过时)。我刚刚运行该项目来测试它是否仍然有效。以下是执行此操作的步骤:

使用上面提到的UpdatableDatabase类。然后从中派生DB(将其放入模板中):

public partial class DB:UpdateableDatabase

UpdatableDatabase.cs必须与生成的类一起使用,否则它将无法工作,因为它需要在表类上使用GetType()。

该服务仅仅是这个类的服务项目:

using System.Data.Services;
using Northwind;

namespace NorthwindService
{
    [System.ServiceModel.ServiceBehavior(IncludeExceptionDetailInFaults=true)]
    public class Northwind: DataService<DB>
    {
        // This method is called only once to initialize service-wide policies.
        public static void InitializeService(IDataServiceConfiguration config)
        {
            config.SetEntitySetAccessRule("*", EntitySetRights.All);
            config.UseVerboseErrors = true;
        }
    }
}

web.config的服务部分很简单:

  <system.serviceModel>
    <serviceHostingEnvironment aspNetCompatibilityEnabled="true"/>
  </system.serviceModel>

然后,对于测试项目,添加对服务的服务引用。我从我认为的astoria项目中获取了测试代码,已经有一段时间了:

using System;
using System.Collections.Generic;
using System.Linq;
using Microsoft.VisualStudio.TestTools.UnitTesting;
using WcfClientTest.NorthwindService;

namespace WcfClientTest
{
    /// <summary>
    /// Summary description for WcfTest
    /// To run these tests, load this project, and somehow get a server running at the URI. 
    /// This can be done by updating the service reference to start the development server.
    /// </summary>
    [TestClass]
    public class WcfTest
    {
        private string baseURI = "http://127.0.0.1:49649/Northwind.svc";
        private DB ctx;

        /// <summary>
        /// Sets up test.
        /// </summary>
        [TestInitialize]
        public void SetUp()
        {
            ctx = new DB(new Uri(baseURI));
        }

        [TestCleanup]
        public void Cleanup()
        {
        }

        [TestMethod]
        public void Select_Simple_With_Variable()
        {
            int categoryID = 5;
            IQueryable<Product> result = from p in ctx.Products
                                         where p.CategoryID == categoryID
                                         select p;

            List<Product> products = result.ToList();
            Assert.AreEqual(7, products.Count());
        }

        [TestMethod]
        public void TestAddNew()
        {
            // add customer
            var c = new Customer
                        {
                            CustomerID = "XXXXX",
                            ContactTitle = "Prez",
                            Country = "USA",
                            ContactName = "Big Guy",
                            CompanyName = "Big Guy Company"
                        };
            ctx.AddToCustomers(c);
            ctx.SaveChanges();

            IQueryable<Customer> qCustomer = from cust in ctx.Customers
                                             where cust.CustomerID == "XXXXX"
                                             select cust;

            Customer c2 = qCustomer.FirstOrDefault();

            Assert.AreEqual("XXXXX", c2.CustomerID);

            if (c2 != null)
            {
                ctx.DeleteObject(c2);
            }
            ctx.SaveChanges();

            IQueryable<Customer> qCustomer2 = from cust in ctx.Customers
                                              where cust.ContactName == "Big Guy"
                                              select cust;
            // Returns null if the row isn't found.
            Customer c3 = qCustomer2.SingleOrDefault();
            Assert.AreEqual(null, c3);
        }
    }
}

这就是我所拥有的,并不难放在一起。现在它是寻找问题的解决方案,但我打算在某个时候使用它。可以完全绕过亚音速,直接使用IQToolkit,并且一些T4模板有一个非常好的系统。

答案 3 :(得分:0)

以下是IUpdatable接口的修补程序和所需的模板更改。我99%肯定这不会进入最终项目,但至少你可以看到我是如何做到的。

http://code.google.com/p/subsonicthree/issues/detail?id=52