Tests.DataMapTests.Sql_ShouldContain_CompositePrimaryKey C# (CSharp) Method

Sql_ShouldContain_CompositePrimaryKey() private method

private Sql_ShouldContain_CompositePrimaryKey ( ) : void
return void
        public void Sql_ShouldContain_CompositePrimaryKey()
        {
            Table<User2> t = new Table<User2>(MySqlDataTypesMap.Instance);
            t.GetSql().Should().Contain(MySqlDataTypesMap.Instance.Expressions[SqlExpressions.PrimaryKeyDeclaredOnTable].Replace(DbDataTypesMapBase.ReplacementStrings.TableName, t.TableName));
        }